mdeliver: typo

This commit is contained in:
Christian Neukirchen 2016-08-01 17:18:31 +02:00
parent cf594afb83
commit d6b34e26b1

View File

@ -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 == ':')