as the clang static analyser points out, the | is useless here.
[citadel.git] / citadel / auth.c
index 501008633a09cd1b4ac7a947796f8d99a0dd323e..89218b60df93d61a12b897ba7e8a6f1d0c2ead7c 100644 (file)
@@ -110,13 +110,14 @@ int validate_password(uid_t uid, const char *pass)
 #endif
        struct passwd *pw;
        int retval = 0;
-       int flags = 0;
-
-       flags = 0;      /* silences compiler warning */
+       int flags;
 
 #ifdef PAM_DATA_SILENT
-       flags = ( flags | PAM_DATA_SILENT ) ;
+       flags = PAM_DATA_SILENT;
+#else
+       flags = 0;
 #endif /* PAM_DATA_SILENT */
+
        if ((pw = getpwuid(uid)) == NULL) {
                return retval;
        }