]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_pas2.c
* added a comment infront of the svn modifieable returns. Now it will be me listed...
[citadel.git] / citadel / serv_pas2.c
index c3f31cea3d9c66ab81acbb3eab1a2518c8e8f4cc..f2bc4e62f2b8f15afe4ee66c3b749e4f6f30cc4d 100644 (file)
@@ -34,7 +34,7 @@
 
 void cmd_pas2(char *argbuf)
 {
-       char pw[SIZ];
+       char pw[256];
        char hexstring[MD5_HEXSTRING_SIZE];
        
 
@@ -50,7 +50,7 @@ void cmd_pas2(char *argbuf)
                return;
        }
        
-       extract(pw, argbuf, 0);
+       extract_token(pw, argbuf, 0, '|', sizeof pw);
        
        if (getuser(&CC->user, CC->curr_user))
        {
@@ -88,5 +88,7 @@ void cmd_pas2(char *argbuf)
 char *serv_pas2_init(void)
 {
         CtdlRegisterProtoHook(cmd_pas2, "PAS2", "APOP-based login");
+
+       /* return our Subversion id for the Log */
         return "$Id$";
 }