diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-11-02 15:32:16 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-11-02 04:36:05 +0000 |
commit | 7d0f04a651e4bed7e1e6d587a1bdaf3cfa6f9e33 (patch) | |
tree | 4f197c631747f7528a771e7f72bf6a5b0eaf9b27 /source3/libsmb | |
parent | b1099a5b560db0145534ed6484eee27c7d93528a (diff) | |
download | samba-7d0f04a651e4bed7e1e6d587a1bdaf3cfa6f9e33.tar.gz samba-7d0f04a651e4bed7e1e6d587a1bdaf3cfa6f9e33.tar.xz samba-7d0f04a651e4bed7e1e6d587a1bdaf3cfa6f9e33.zip |
s3-libsmbclient Don't store 'debug_stderr' on the libsmbclient context
Following the review of this patch series by Derrell Lipman, remove
the seperate storage of the debug_stderr variable from the
libsmbclient SMBC_internal_data context.
Andrew Bartlett
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/libsmb_context.c | 11 | ||||
-rw-r--r-- | source3/libsmb/libsmb_setget.c | 11 |
2 files changed, 10 insertions, 12 deletions
diff --git a/source3/libsmb/libsmb_context.c b/source3/libsmb/libsmb_context.c index 22e0a047172..6b56e45398d 100644 --- a/source3/libsmb/libsmb_context.c +++ b/source3/libsmb/libsmb_context.c @@ -555,17 +555,6 @@ smbc_init_context(SMBCCTX *context) return NULL; } - if (context->internal->debug_stderr) { - /* - * We do not have a unique per-thread debug state? For - * now, we'll just leave it up to the user. If any one - * context spefies debug to stderr then all will be (and - * will stay that way, as it is unsafe to flip back if - * stdout is in use for other things) - */ - setup_logging("libsmbclient", DEBUG_STDERR); - } - if ((!smbc_getFunctionAuthData(context) && !smbc_getFunctionAuthDataWithContext(context)) || smbc_getDebug(context) < 0 || diff --git a/source3/libsmb/libsmb_setget.c b/source3/libsmb/libsmb_setget.c index 0d260d7cf29..0a023467525 100644 --- a/source3/libsmb/libsmb_setget.c +++ b/source3/libsmb/libsmb_setget.c @@ -135,7 +135,16 @@ smbc_getOptionDebugToStderr(SMBCCTX *c) void smbc_setOptionDebugToStderr(SMBCCTX *c, smbc_bool b) { - c->internal->debug_stderr = b; + if (b) { + /* + * We do not have a unique per-thread debug state? For + * now, we'll just leave it up to the user. If any one + * context spefies debug to stderr then all will be (and + * will stay that way, as it is unsafe to flip back if + * stdout is in use for other things) + */ + setup_logging("libsmbclient", DEBUG_STDERR); + } } /** |