diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-20 07:13:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-20 07:13:47 +0000 |
commit | bed11a34ba26f47d99d8dd1c0add4bbe72da109d (patch) | |
tree | 8b954c0e6900da47eba0662184d9c731a421a898 | |
parent | 2838f61540f899001b9a11928cbf6fc23d5cd5fe (diff) | |
download | samba-bed11a34ba26f47d99d8dd1c0add4bbe72da109d.tar.gz samba-bed11a34ba26f47d99d8dd1c0add4bbe72da109d.tar.bz2 samba-bed11a34ba26f47d99d8dd1c0add4bbe72da109d.zip |
net now sends its debug to stderr so its output can be relied upon in
scripts
(This used to be commit 6d2f7ed708e75687d23f432ba9a186e88fa14118)
-rw-r--r-- | source3/utils/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 99b0998992..3f6e9268e4 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -367,7 +367,7 @@ static struct functable net_func[] = { got_pass = 0; zero_ip(&opt_dest_ip); - dbf = x_stdout; + dbf = x_stderr; pc = poptGetContext(NULL, argc, (const char **) argv, long_options, POPT_CONTEXT_KEEP_FIRST); |