diff options
author | 2015-11-19 18:37:49 +0000 | |
---|---|---|
committer | 2015-11-19 18:37:49 +0000 | |
commit | 6ddcf8845c0a3ada0129a6d5fd2347b1791d6c36 (patch) | |
tree | ba26cf73ead0d77043d448cf240e133fe321dfe7 | |
parent | Call syslog() if login_* pledge fails; OK deraadt@ (diff) | |
download | wireguard-openbsd-6ddcf8845c0a3ada0129a6d5fd2347b1791d6c36.tar.xz wireguard-openbsd-6ddcf8845c0a3ada0129a6d5fd2347b1791d6c36.zip |
hint: compile before commit
-rw-r--r-- | regress/lib/libpthread/socket/1/socket1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libpthread/socket/1/socket1.c b/regress/lib/libpthread/socket/1/socket1.c index 7871558c538..1752820b1fd 100644 --- a/regress/lib/libpthread/socket/1/socket1.c +++ b/regress/lib/libpthread/socket/1/socket1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: socket1.c,v 1.4 2015/11/04 21:29:20 tedu Exp $ */ +/* $OpenBSD: socket1.c,v 1.5 2015/11/19 18:37:49 deraadt Exp $ */ /* * Copyright (c) 1993, 1994, 1995, 1996 by Chris Provenzano and contributors, * proven@mit.edu All rights reserved. @@ -176,8 +176,8 @@ main(int argc, char *argv[]) { pthread_t thread; - setvbuf(stdout, NULL, _IONBUF, 0); - setvbuf(stderr, NULL, _IONBUF, 0); + setvbuf(stdout, NULL, _IONBF, 0); + setvbuf(stderr, NULL, _IONBF, 0); CHECKr(pthread_attr_init(&attr)); #if 0 |