summaryrefslogtreecommitdiff
path: root/usr.sbin/ndp
diff options
context:
space:
mode:
authorJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2003-10-02 03:26:08 +0000
committerJun-ichiro itojun Hagino <itojun@cvs.openbsd.org>2003-10-02 03:26:08 +0000
commitbea85bc7a18d7bf3bc3b3270a80d02dca298c246 (patch)
treef250516739336f366a608fad766cabfad27dd283 /usr.sbin/ndp
parent20429d68ea6e0178832192152535cf35f424005b (diff)
style sync w/ kame
Diffstat (limited to 'usr.sbin/ndp')
-rw-r--r--usr.sbin/ndp/ndp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ndp/ndp.c b/usr.sbin/ndp/ndp.c
index 2f8f7c25be3..6c30e0a7556 100644
--- a/usr.sbin/ndp/ndp.c
+++ b/usr.sbin/ndp/ndp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ndp.c,v 1.30 2003/09/26 15:51:43 avsm Exp $ */
+/* $OpenBSD: ndp.c,v 1.31 2003/10/02 03:26:07 itojun Exp $ */
/* $KAME: ndp.c,v 1.101 2002/07/17 08:46:33 itojun Exp $ */
/*
@@ -330,8 +330,8 @@ file(char *name)
args[4] = &arg[4][0];
retval = 0;
while (fgets(line, 100, fp) != NULL) {
- i = sscanf(line, "%49s %49s %49s %49s %49s", arg[0], arg[1], arg[2],
- arg[3], arg[4]);
+ i = sscanf(line, "%49s %49s %49s %49s %49s",
+ arg[0], arg[1], arg[2], arg[3], arg[4]);
if (i < 2) {
fprintf(stderr, "ndp: bad line: %s\n", line);
retval = 1;