diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2004-02-10 14:47:23 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2004-02-10 14:47:23 +0000 |
commit | 7bc3bbe5001c947f99531fe0030321b0cbf43068 (patch) | |
tree | 7d6e1bb490df1b09f3e5cbe1034d4fa40525535c /usr.sbin/ndp | |
parent | 0d7b447ea143958172551fbf867049a0fa0aae72 (diff) |
fflush(stdout). kame pr 584
Diffstat (limited to 'usr.sbin/ndp')
-rw-r--r-- | usr.sbin/ndp/ndp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ndp/ndp.c b/usr.sbin/ndp/ndp.c index 62e7c595353..cc1e80a8616 100644 --- a/usr.sbin/ndp/ndp.c +++ b/usr.sbin/ndp/ndp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ndp.c,v 1.32 2004/01/08 06:51:44 itojun Exp $ */ +/* $OpenBSD: ndp.c,v 1.33 2004/02/10 14:47:22 itojun Exp $ */ /* $KAME: ndp.c,v 1.101 2002/07/17 08:46:33 itojun Exp $ */ /* @@ -762,6 +762,7 @@ again:; if (repeat) { printf("\n"); + fflush(stdout); sleep(repeat); goto again; } |