diff options
author | Gerald Carter <jerry@samba.org> | 2006-04-20 14:40:18 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2006-04-20 14:40:18 +0000 |
commit | f18aace9e04563926d99f5195558d287e7a6f7cf (patch) | |
tree | 710f6a5a73931044ac19c0cc98dab1750da05aef /source | |
parent | 21db39eed519f8ab29d7badf55ad939e0aba19f1 (diff) | |
download | samba-f18aace9e04563926d99f5195558d287e7a6f7cf.tar.gz samba-f18aace9e04563926d99f5195558d287e7a6f7cf.tar.xz samba-f18aace9e04563926d99f5195558d287e7a6f7cf.zip |
r15153: more changes for the release notes and ab's latest fixes for winbindd & smbcontrol
Diffstat (limited to 'source')
-rw-r--r-- | source/nsswitch/winbindd.c | 3 | ||||
-rw-r--r-- | source/utils/smbcontrol.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/source/nsswitch/winbindd.c b/source/nsswitch/winbindd.c index 997991a8c62..e6c69247f85 100644 --- a/source/nsswitch/winbindd.c +++ b/source/nsswitch/winbindd.c @@ -26,6 +26,9 @@ #include "includes.h" #include "winbindd.h" +#undef DBGC_CLASS +#define DBGC_CLASS DBGC_WINBIND + BOOL opt_nocache = False; static BOOL interactive = False; diff --git a/source/utils/smbcontrol.c b/source/utils/smbcontrol.c index e1bf25ad05d..5c798c79014 100644 --- a/source/utils/smbcontrol.c +++ b/source/utils/smbcontrol.c @@ -846,7 +846,7 @@ static void usage(poptContext *pc) static struct process_id parse_dest(const char *dest) { - struct process_id result; + struct process_id result = {-1}; pid_t pid; /* Zero is a special return value for broadcast smbd */ |