diff options
author | Günther Deschner <gd@samba.org> | 2005-02-07 18:20:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:35 -0500 |
commit | 5f54cc9bd3fa76e62926de0670f832f7b0e3739d (patch) | |
tree | 916e513b439140dbe88735721d60730bae3ce942 /source3/utils | |
parent | 3842d6c205b8ec8606d4086a59f9fe7a5d5b6435 (diff) | |
download | samba-5f54cc9bd3fa76e62926de0670f832f7b0e3739d.tar.gz samba-5f54cc9bd3fa76e62926de0670f832f7b0e3739d.tar.bz2 samba-5f54cc9bd3fa76e62926de0670f832f7b0e3739d.zip |
r5264: Log with loglevel 0 when account-administration scripts fail.
Guenther
(This used to be commit 3d391ef149639750db376b05528a27422f8a3321)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc_samsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_samsync.c b/source3/utils/net_rpc_samsync.c index 2db8ff054b..cc81719b6a 100644 --- a/source3/utils/net_rpc_samsync.c +++ b/source3/utils/net_rpc_samsync.c @@ -523,7 +523,7 @@ static NTSTATUS fetch_account_info(uint32 rid, SAM_ACCOUNT_INFO *delta) all_string_sub(add_script, "%u", account, sizeof(account)); add_ret = smbrun(add_script,NULL); - DEBUG(1,("fetch_account: Running the command `%s' " + DEBUG(add_ret ? 0 : 1,("fetch_account: Running the command `%s' " "gave %d\n", add_script, add_ret)); } else { DEBUG(8,("fetch_account_info: no add user/machine script. Asking winbindd\n")); |