about summary refs log tree commit diff
path: root/mexport.c
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2017-06-19 13:33:44 +0200
committerLeah Neukirchen <leah@vuxu.org>2017-06-19 13:33:44 +0200
commitcbe0a0f9553efc3dfc0d4703107cc1d02cc2d06c (patch)
tree92a16b34b20a8a51150852d181394d02a79da330 /mexport.c
parentfc4e4af774d020b9e191ac50faabcba0027dd27a (diff)
downloadmblaze-cbe0a0f9553efc3dfc0d4703107cc1d02cc2d06c.tar.gz
mblaze-cbe0a0f9553efc3dfc0d4703107cc1d02cc2d06c.tar.xz
mblaze-cbe0a0f9553efc3dfc0d4703107cc1d02cc2d06c.zip
mexport: < and > are not part of the addr-spec used in From lines
Diffstat (limited to 'mexport.c')
-rw-r--r--mexport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mexport.c b/mexport.c
index ee9f126..1a7d599 100644
--- a/mexport.c
+++ b/mexport.c
@@ -48,7 +48,7 @@ export(char *file)
 			char *s = strchr(v, '<');
 			char *e = strchr(s, '>');
 			if (s && e) {
-				e++;
+				s++;
 				memcpy(from, s, e-s);
 				from[e-s] = 0;
 			}