From: beck Date: Thu, 6 Apr 2017 15:30:12 +0000 (+0000) Subject: fix missing \ on \n, spotted by Edgar Pettijohn X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=578e5470bac2afadc526c9b8e46464d9b80bed3d;p=openbsd fix missing \ on \n, spotted by Edgar Pettijohn --- diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c index 12bf20915e6..185f7032d8d 100644 --- a/libexec/spamd/spamd.c +++ b/libexec/spamd/spamd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spamd.c,v 1.150 2017/01/23 09:21:04 beck Exp $ */ +/* $OpenBSD: spamd.c,v 1.151 2017/04/06 15:30:12 beck Exp $ */ /* * Copyright (c) 2015 Henning Brauer @@ -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;