r18927: Fix build. *please* compile the code at least once before checking it in.
authorGerald Carter <jerry@samba.org>
Tue, 26 Sep 2006 18:31:47 +0000 (18:31 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:14:47 +0000 (12:14 -0500)
(This used to be commit 4e464a2c35984752244f30ce9bb259eb16149e3f)

source3/nsswitch/pam_winbind.c

index 5d5e903c42bbdef9b5a2c7bdc6cab314396d3de1..c1e1bc5244d91940a3d8d363b90a55b54d8d1b86 100644 (file)
@@ -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;
        }