diff options
author | Tim Potter <tpot@samba.org> | 2004-10-11 00:32:31 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2004-10-11 00:32:31 +0000 |
commit | 0bf94369732087618fe5a4fef7644af58730f5a3 (patch) | |
tree | 670b99f4333480b7d21ff8d7baf41e305df2d61e /source/auth | |
parent | 8ba7f67d3ea638b64d6ef001bef9c61e7bb33fc7 (diff) | |
download | samba-0bf94369732087618fe5a4fef7644af58730f5a3.tar.gz samba-0bf94369732087618fe5a4fef7644af58730f5a3.tar.xz samba-0bf94369732087618fe5a4fef7644af58730f5a3.zip |
r2899: Change some #if DEBUG_PASSWORD's to #ifdef DEBUG_PASSWORD.
Bugzilla #1903.
Diffstat (limited to 'source/auth')
-rw-r--r-- | source/auth/pass_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/pass_check.c b/source/auth/pass_check.c index 1ac8c1815a6..0425e01cdcb 100644 --- a/source/auth/pass_check.c +++ b/source/auth/pass_check.c @@ -599,7 +599,7 @@ NTSTATUS pass_check(const struct passwd *pass, const char *user, const char *pas NTSTATUS nt_status; -#if DEBUG_PASSWORD +#ifdef DEBUG_PASSWORD DEBUG(100, ("checking user=[%s] pass=[%s]\n", user, password)); #endif |