Remove unused parameter
[citadel.git] / citadel / context.c
index f95a7a2f7cab24e9a867aa92f4f95b6f993c6e72..385f9a7790f3b51fc58446f3da8388c44b700f7a 100644 (file)
@@ -587,10 +587,10 @@ void CtdlFillSystemContext(CitContext *context, char *name)
        context->state = CON_SYS;
        context->ServiceName = name;
 
-       /* internal_create_user has the side effect of loading the user regardless of wether they
+       /* internal_create_user has the side effect of loading the user regardless of whether they
         * already existed or needed to be created
         */
-       internal_create_user (sysname, len, &(context->user), -1) ;
+       internal_create_user(sysname, &(context->user), -1) ;
        
        /* Check to see if the system user needs upgrading */
        if (context->user.usernum == 0)