]> Pileus Git - ~andy/fetchmail/commitdiff
Cleaned up ticker dots code.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 30 Dec 1996 21:02:16 +0000 (21:02 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 30 Dec 1996 21:02:16 +0000 (21:02 -0000)
svn path=/trunk/; revision=708

NEWS
configure.in
driver.c
fetchmail.h

diff --git a/NEWS b/NEWS
index 6dae6bf940ddf9f1e9518f93fe3126b0a79c5915..19561f74e0a3ea88588b05f572504f73982ed147 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,10 @@ features --
 
 bugs --
 
+* Fixed a minor bug introduced into From handling by 2.6.
+
+There are 169 people on the fetchmail-friends list.
+
 ------------------------------------------------------------------------------
 fetchmail-2.6 (Fri Dec 27 12:42:56 EST 1996)
 
index 6dea56c5c02348707bc67853c92fda5b47f18125..b8950a8e52749e86c2feae9946dd114e912f1d40 100644 (file)
@@ -81,6 +81,10 @@ if test $opt_enable_stdio = unset; then
     *-*-*freebsd*)
       AC_DEFINE(USE_STDIO)
       ;;
+  case $host in
+    *-*-*linux*)
+      AC_DEFINE(USE_STDIO)
+      ;;
   esac
 elif test $opt_enable_stdio = yes; then
   AC_DEFINE(USE_STDIO)
index 9bc208c29f6636244fc9929445a2eeb653fa5231..b545cde172fef7a6d7448d05ae1bb6cc91d5ed6b 100644 (file)
--- a/driver.c
+++ b/driver.c
@@ -874,6 +874,7 @@ const struct method *proto; /* protocol method table */
     tagnum = 0;
     tag[0] = '\0';     /* nuke any tag hanging out from previous query */
     ok = 0;
+    error_init(poll_interval == 0 && !logfile);
 
     /* set up the server-nonresponse timeout */
     sigsave = signal(SIGVTALRM, vtalarm_handler);
index 905bc21151093dffca50f11f3be300722b23ff3b..7b194c24d2c8e615ad41c7d0fdff47ee6601d812 100644 (file)
@@ -164,6 +164,7 @@ extern int smtp_response;   /* numeric value of SMTP response code */
 
 /* prototypes for globally callable functions */
 #if defined(HAVE_STDARG_H)
+void error_init(int foreground);
 void error (int status, int errnum, const char *format, ...);
 void error_build (const char *format, ...);
 void error_complete (int status, int errnum, const char *format, ...);