about summary refs log tree commit diff
path: root/mdeliver.c
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-08-01 17:18:31 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-08-01 17:18:31 +0200
commitd6b34e26b1c780e2085c4eaf8621c614d3738012 (patch)
tree94d603ff50ad9c4a0bfc5f4d01c1728218df44cb /mdeliver.c
parentcf594afb833cb09819b5d1a4edacd0d00808045a (diff)
downloadmblaze-d6b34e26b1c780e2085c4eaf8621c614d3738012.tar.gz
mblaze-d6b34e26b1c780e2085c4eaf8621c614d3738012.tar.xz
mblaze-d6b34e26b1c780e2085c4eaf8621c614d3738012.zip
mdeliver: typo
Diffstat (limited to 'mdeliver.c')
-rw-r--r--mdeliver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdeliver.c b/mdeliver.c
index 7b0a928..fd0c860 100644
--- a/mdeliver.c
+++ b/mdeliver.c
@@ -37,7 +37,7 @@ gethost() {
 	gethostname(host, sizeof host);
 	// termination not posix guaranteed
 	host[sizeof host - 1] = 0;
-	// replace / and : with _
+	// replace / and : with -
 	char *s;
 	for (s = host; *s; s++)
 		if (*s == '/' || *s == ':')