about summary refs log tree commit diff
diff options
context:
space:
mode:
-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 == ':')