]> code.citadel.org Git - citadel.git/commitdiff
msgbase.c: fixed a bug that broke incoming network messages
authorArt Cancro <ajc@citadel.org>
Wed, 11 Nov 1998 04:21:07 +0000 (04:21 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 11 Nov 1998 04:21:07 +0000 (04:21 +0000)
citadel/msgbase.c

index 45483dab8f728566e82d4c395d737c575b28af7a..f6cbf4b9e4974106385007cd13e8898cd4ea2a1c 100644 (file)
@@ -731,6 +731,7 @@ void save_message(char *mtmp,       /* file containing proper message */
        strcpy(actual_rm, CC->quickroom.QRname);
        strcpy(hold_rm, "");
        strcpy(recipient, rec);
+       strproc(recipient);
 
        /* If the user is a twit, move to the twit room for posting... */
        if (TWITDETECT) if (CC->usersupp.axlevel==2) {
@@ -758,7 +759,6 @@ void save_message(char *mtmp,       /* file containing proper message */
                strcpy(actual_rm, AIDEROOM);
                }
 
-
        /* This call to usergoto() changes rooms if necessary.  It also
         * causes the latest message list to be read into memory.
         */