Fix warnings all over citserver; handle function replies; remove unused code.
[citadel.git] / citadel / user_ops.h
index b057947c6d0a72828e991e465877341b304ed0ed..7bd7c6b7f2cc21d7db7048ff0cc12154c0caafc6 100644 (file)
@@ -70,7 +70,7 @@ static INLINE long cutuserkey(char *username) {
                syslog(LOG_EMERG, "Username to long: %s", username);
                cit_backtrace ();
                len = USERNAME_SIZE - 1; 
-               ((char*)username)[USERNAME_SIZE - 1]='\0';
+               username[63]='\0';
        }
        return len;
 }