diff options
-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; } |