]> code.citadel.org Git - citadel.git/commitdiff
* If there's already a Subject line in memory, display it below the usual
authorArt Cancro <ajc@citadel.org>
Fri, 8 Feb 2002 22:39:08 +0000 (22:39 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 8 Feb 2002 22:39:08 +0000 (22:39 +0000)
  headers when the user hits <E>

citadel/ChangeLog
citadel/messages.c

index f9f211bb4b46b779a5b0fbcfadabafb9f7f09503..477748581402cc541b748afc2113a1a3f4fabed3 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 590.106  2002/02/08 22:39:08  ajc
+ * If there's already a Subject line in memory, display it below the usual
+   headers when the user hits <E>
+
  Revision 590.105  2002/02/08 22:36:23  ajc
  * Changed the logic for printing RFC822 addresses (again)
  * Implemented cdb_trunc() in database_sleepycat.c, using db_truncate()
@@ -3314,3 +3318,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
+
index 33ad0cae1616dbc501c2661798223e73ec6145d4..32fe876fe7a27bfece66c66bd7a4223cb573d9ff 100644 (file)
@@ -704,6 +704,9 @@ int client_make_message(char *filename,     /* temporary file name */
                }
        }
        scr_printf("%s\n", header);
+       if (subject != NULL) if (strlen(subject) > 0) {
+               scr_printf("Subject: %s\n", subject);
+       }
 
        beg = 0L;