summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2001-01-20 23:02:08 +0000
committerDamien Miller <djm@cvs.openbsd.org>2001-01-20 23:02:08 +0000
commit4bd58520f2f538c6bfc126a5273a48983e03fce8 (patch)
tree7525ce50aa8a2b2ef80782e268d31cc3a211c45a /usr.bin
parent6e56e7cdf881460f6a6b5317d9e76c8deb2838c5 (diff)
KNF; ok markus
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/readconf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c
index cdcb5ea4235..6086776b026 100644
--- a/usr.bin/ssh/readconf.c
+++ b/usr.bin/ssh/readconf.c
@@ -12,7 +12,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.56 2001/01/20 17:59:40 deraadt Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.57 2001/01/20 23:02:07 djm Exp $");
#include "ssh.h"
#include "readconf.h"
@@ -598,8 +598,7 @@ parse_int:
}
/* Check that there is no garbage at end of line. */
- if ((arg = strdelim(&s)) != NULL && *arg != '\0')
- {
+ if ((arg = strdelim(&s)) != NULL && *arg != '\0') {
fatal("%.200s line %d: garbage at end of line; \"%.200s\".",
filename, linenum, arg);
}