chiark / gitweb /
fix a const-correctness bug
[inn-innduct.git] / backends / innduct.c
index 5caddb5dba0dd69e4fe2366fe1d3c7da7f427d7a..c2aeb9dbf0b4824d1fc07c3cc6cda1ef7460b514 100644 (file)
@@ -543,7 +543,7 @@ static int nocheck, nocheck_reported, in_child;
 /* for logging, simulation, debugging, etc. */
 int simulate_flush= -1;
 int logv_use_syslog;
-static char *logv_prefix="";
+static const char *logv_prefix="";
 
 /*========== logging ==========*/
 
@@ -2179,12 +2179,15 @@ static void *feedfile_got_article(oop_source *lp, oop_read *rd,
   art->offset= old_offset;
   art->blanklen= recsz;
   strcpy(art->messageid, space+1);
-  LIST_ADDTAIL(ipf->queue, art);
 
-  if (ipf->autodefer >= 0)
+  if (ipf->autodefer >= 0) {
     article_autodefer(ipf, art);
-  else if (ipf==backlog_input_file)
-    article_check_expired(art);
+  } else {
+    LIST_ADDTAIL(ipf->queue, art);
+
+    if (ipf==backlog_input_file)
+      article_check_expired(art);
+  }
 
   if (sms==sm_NORMAL && ipf==main_input_file &&
       ipf->offset >= target_max_feedfile_size)