artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05f021a
)
fix missing \ on \n, spotted by Edgar Pettijohn
author
beck
<beck@openbsd.org>
Thu, 6 Apr 2017 15:30:12 +0000
(15:30 +0000)
committer
beck
<beck@openbsd.org>
Thu, 6 Apr 2017 15:30:12 +0000
(15:30 +0000)
libexec/spamd/spamd.c
patch
|
blob
|
history
diff --git
a/libexec/spamd/spamd.c
b/libexec/spamd/spamd.c
index
12bf209
..
185f703
100644
(file)
--- a/
libexec/spamd/spamd.c
+++ b/
libexec/spamd/spamd.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: spamd.c,v 1.15
0 2017/01/23 09:21:04
beck Exp $ */
+/* $OpenBSD: spamd.c,v 1.15
1 2017/04/06 15:30:12
beck Exp $ */
/*
* Copyright (c) 2015 Henning Brauer <henning@openbsd.org>
@@
-1287,7
+1287,7
@@
main(int argc, char *argv[])
case 'c':
maxcon = strtonum(optarg, 1, maxfiles, &errstr);
if (errstr) {
- fprintf(stderr, "-c %s: %sn", optarg, errstr);
+ fprintf(stderr, "-c %s: %s
\
n", optarg, errstr);
usage();
}
break;