about summary refs log tree commit diff
path: root/seq.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-07-26 16:55:55 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-07-26 16:55:55 +0200
commit2b81707c51f2ae26db5129d15741fe89a3b781d2 (patch)
tree7233dfbcd955317fb708698cff46c35f2df7b3e2 /seq.c
parent1fd83bf1a8279cd9b2be83db0eaba67831ebc6ca (diff)
downloadmblaze-2b81707c51f2ae26db5129d15741fe89a3b781d2.tar.gz
mblaze-2b81707c51f2ae26db5129d15741fe89a3b781d2.tar.xz
mblaze-2b81707c51f2ae26db5129d15741fe89a3b781d2.zip
rename map to seq
The old terminology didn't make much sense to users.
Diffstat (limited to 'seq.c')
-rw-r--r--seq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/seq.c b/seq.c
index 56caa56..3d5b70e 100644
--- a/seq.c
+++ b/seq.c
@@ -40,9 +40,9 @@ blaze822_seq_open(char *file)
 
 	// env $SEQ or something
 	if (!file)
-		file = getenv("MAILMAP");
+		file = getenv("MAILSEQ");
 	if (!file)
-		file = blaze822_home_file(".santoku/map");
+		file = blaze822_home_file(".santoku/seq");
 	fd = open(file, O_RDONLY);
 	if (!fd)
 		return 0;