]> code.citadel.org Git - citadel.git/commitdiff
* Fixed really dumb error that prevented network msgs from posting
authorArt Cancro <ajc@citadel.org>
Fri, 23 Jul 1999 11:54:09 +0000 (11:54 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 23 Jul 1999 11:54:09 +0000 (11:54 +0000)
citadel/ChangeLog
citadel/msgbase.c

index d3a0078cd3058d120e0efdf8e109f91dd9dfe12e..fe0040aa4ada968a790e392573e53e4081b1a325 100644 (file)
@@ -1,6 +1,7 @@
 Thu Jul 22 22:26:50 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Moved message deletion into new API function CtdlDeleteMessages()
        * Added CtdlWriteObject() to store generic data in the msgbase
+       * Fixed really dumb error that prevented network msgs from posting
 
 Tue Jul 20 22:14:54 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Moved the actual work done in cmd_msgs() into a new API function
index 278b10e412253a49d713f3c90a3f7afae8ba270a..41a06eed01328babac66d0f8883db04268289df0 100644 (file)
@@ -1018,7 +1018,7 @@ void save_message(char *mtmp,     /* file containing proper message */
         * message, we want to BYPASS saving the sender's copy (because there
         * is no local sender; it would otherwise go to the Trashcan).
         */
-       if (!CC->internal_pgm) {
+       if ( (!CC->internal_pgm) || (strlen(recipient)==0) ) {
                /* If the user is a twit, move to the twit room for posting */
                if (TWITDETECT)
                        if (CC->usersupp.axlevel == 2) {