diff options
author | Gerald Carter <jerry@samba.org> | 2006-09-26 18:31:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:14:47 -0500 |
commit | b0e29c79e7195790de217d665737257be90b8454 (patch) | |
tree | 80a0c1f3421f967990a5aca72f970d885ad03004 | |
parent | 9d931a84213b33727536c4b80320ce93d924ae8d (diff) | |
download | samba-b0e29c79e7195790de217d665737257be90b8454.tar.gz samba-b0e29c79e7195790de217d665737257be90b8454.tar.bz2 samba-b0e29c79e7195790de217d665737257be90b8454.zip |
r18927: Fix build. *please* compile the code at least once before checking it in.
(This used to be commit 4e464a2c35984752244f30ce9bb259eb16149e3f)
-rw-r--r-- | source3/nsswitch/pam_winbind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/pam_winbind.c b/source3/nsswitch/pam_winbind.c index 5d5e903c42..c1e1bc5244 100644 --- a/source3/nsswitch/pam_winbind.c +++ b/source3/nsswitch/pam_winbind.c @@ -124,7 +124,7 @@ static int _pam_parse(const pam_handle_t *pamh, int flags, int argc, const char goto config_from_pam; } - if (iniparser_getboolean(*d, ("global:debug", False))) { + if (iniparser_getboolean(*d, "global:debug", False)) { ctrl |= WINBIND_DEBUG_ARG; } @@ -140,7 +140,7 @@ static int _pam_parse(const pam_handle_t *pamh, int flags, int argc, const char ctrl |= WINBIND_SILENT; } - if (iniparser_getstr(*d, "global:krb5_ccache_type")) != NULL) { + if (iniparser_getstr(*d, "global:krb5_ccache_type") != NULL) { ctrl |= WINBIND_KRB5_CCACHE_TYPE; } |