diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-04-10 10:11:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:29 -0500 |
commit | 6d1ae6d35aca66cff090d40927da1ac093dc65ce (patch) | |
tree | e67493b5c69f25fa7f7ae353ecb4ccdb1cce0a30 /source4/include | |
parent | 20841a25ad2a45ec920d9ad41f1279cbe2aa196f (diff) | |
download | samba-6d1ae6d35aca66cff090d40927da1ac093dc65ce.tar.gz samba-6d1ae6d35aca66cff090d40927da1ac093dc65ce.tar.bz2 samba-6d1ae6d35aca66cff090d40927da1ac093dc65ce.zip |
r6271: Don't zero the cli_credentials structure - instead allow valgrind to
track the use of un-initialised values.
This change will require a recompile from clean, as the enum
describing the status of each element now has a default of
CRED_UNINITIALISED.
Andrew Bartlett
(This used to be commit 83c2eb806d43f588bd06336aa7e2dbdc00dc2c67)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/credentials.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/include/credentials.h b/source4/include/credentials.h index d7bf8997eb..e7df58f217 100644 --- a/source4/include/credentials.h +++ b/source4/include/credentials.h @@ -23,7 +23,8 @@ /* In order of priority */ enum credentials_obtained { - CRED_GUESSED = 0, /* Current value should be used, which was guessed */ + CRED_UNINITIALISED = 0, /* We don't even have a guess yet */ + CRED_GUESSED, /* Current value should be used, which was guessed */ CRED_CALLBACK, /* Callback should be used to obtain value */ CRED_SPECIFIED /* Was explicitly specified on the command-line */ }; |