Commit Diff


commit - 9aeab972b614f1021f8b25f20ae23937f78f68c0
commit + 67cd13234d8d66e4faa54caa0d57ebec4ba2e527
blob - 2df27c0446d1961cdcbe440378f6f2d09636462b
blob + f2aa578f422c6b10f1a572e69f231437d332db95
--- opensmtpd.c
+++ opensmtpd.c
@@ -934,7 +934,7 @@ osmtpd_err(int eval, const char *fmt, ...)
 	va_start(ap, fmt);
 	vfprintf(stderr, fmt, ap);
 	va_end(ap);
-	fprintf(stderr, "%s\n", strerror(errno));
+	fprintf(stderr, ": %s\n", strerror(errno));
 	exit(eval);
 }