Quick respin of WebCit (now 7.12) due to missing config.sub
[citadel.git] / citadel / user_ops.c
index f143dba7d6c6a62404fe172ff3c3f02d3ea43961..965156bd575de513b7eb54bda58b812968bf405a 100644 (file)
@@ -359,13 +359,13 @@ int CtdlLoginExistingUser(char *authname, char *trythisname)
        if (trythisname == NULL) return login_not_found;
 
        CC->is_master = 0;
-/* This code WORKS!  It's commented out because we don't want anyone using the hardcoded password.
+/* This code WORKS!  It's commented out because we don't want anyone using the hardcoded password. 
        if (authname) {
                if (!strcasecmp(authname, MASTER_USER)) {
                        CC->is_master = 1;
                }
        }
- */
+*/
 
        safestrncpy(username, trythisname, USERNAME_SIZE);
        striplt(username);