diff src/post.c @ 100:af51bf245bc3 noffle

[svn] Fix stupid Date: bug
author bears
date Fri, 26 May 2000 10:46:29 +0100
parents eb522db0d032
children 3b4db42990e0
line wrap: on
line diff
--- a/src/post.c	Sat May 20 21:14:13 2000 +0100
+++ b/src/post.c	Fri May 26 10:46:29 2000 +0100
@@ -1,7 +1,7 @@
 /*
   post.c
 
-  $Id: post.c 112 2000-05-19 15:14:41Z bears $
+  $Id: post.c 123 2000-05-26 09:46:29Z bears $
 */
 
 #if HAVE_CONFIG_H
@@ -244,11 +244,9 @@
     {
 	time( &t );
 	Utl_newsDate( t, article.over.date );
-	DynStr_app( s, "Date: " );
-	DynStr_appLn( s, article.over.date );
     }
-    else
-	DynStr_appLn( s, article.over.date );
+    DynStr_app( s, "Date: " );
+    DynStr_appLn( s, article.over.date );
 
     /* Ensure Message ID is present and valid */
     if ( Cfg_replaceMsgId() )