diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-10 14:19:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:13 -0500 |
commit | a8421e81078b91ae97ada3be352416eae26a9c7b (patch) | |
tree | b9b67018df5572b6d5e2d3125f497e4373182867 /source4/utils/net | |
parent | 3dc237eb28e9254eabf9a1eab08f858ca4830fbe (diff) | |
download | samba-a8421e81078b91ae97ada3be352416eae26a9c7b.tar.gz samba-a8421e81078b91ae97ada3be352416eae26a9c7b.tar.bz2 samba-a8421e81078b91ae97ada3be352416eae26a9c7b.zip |
r18343: fixed setlinebuf() prototype, added test for it, and use it in two
places to avoid a #ifdef
(This used to be commit 095b8057740a4bb207e24e4c63a2dcb53521a72f)
Diffstat (limited to 'source4/utils/net')
-rw-r--r-- | source4/utils/net/net.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source4/utils/net/net.c b/source4/utils/net/net.c index 70c1de922d..7e885acfe8 100644 --- a/source4/utils/net/net.c +++ b/source4/utils/net/net.c @@ -151,9 +151,7 @@ static int binary_net(int argc, const char **argv) { NULL } }; -#ifdef HAVE_SETBUFFER - setbuffer(stdout, NULL, 0); -#endif + setlinebuf(stdout); pc = poptGetContext("net", argc, (const char **) argv, long_options, POPT_CONTEXT_KEEP_FIRST); |