take ECONNRESET (Connection reset by peer) as a temporary error during
authorEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 13 Mar 1983 10:05:51 +0000 (02:05 -0800)
committerEric Allman <eric@ucbvax.Berkeley.EDU>
Sun, 13 Mar 1983 10:05:51 +0000 (02:05 -0800)
connection initiation.

SCCS-mr: usr.sbin/sendmail/src/daemon.c 196
SCCS-mr: usr.sbin/sendmail/src/version.c 196
SCCS-vsn: usr.sbin/sendmail/src/daemon.c 3.52
SCCS-vsn: usr.sbin/sendmail/src/version.c 3.329

usr/src/usr.sbin/sendmail/src/daemon.c
usr/src/usr.sbin/sendmail/src/version.c

index 810965a..c5ca265 100644 (file)
@@ -3,7 +3,7 @@
 # include <sys/mx.h>
 
 #ifndef DAEMON
 # include <sys/mx.h>
 
 #ifndef DAEMON
-SCCSID(@(#)daemon.c    3.51            %G%     (w/o daemon mode));
+SCCSID(@(#)daemon.c    3.52            %G%     (w/o daemon mode));
 #else
 
 #include <sys/socket.h>
 #else
 
 #include <sys/socket.h>
@@ -11,7 +11,7 @@ SCCSID(@(#)daemon.c   3.51            %G%     (w/o daemon mode));
 #include <netdb.h>
 #include <wait.h>
 
 #include <netdb.h>
 #include <wait.h>
 
-SCCSID(@(#)daemon.c    3.51            %G%     (with daemon mode));
+SCCSID(@(#)daemon.c    3.52            %G%     (with daemon mode));
 
 /*
 **  DAEMON.C -- routines to use when running as a daemon.
 
 /*
 **  DAEMON.C -- routines to use when running as a daemon.
@@ -264,6 +264,7 @@ makeconnection(host, port, outfile, infile)
                  case ENETRESET:
                  case ENOBUFS:
                  case ECONNREFUSED:
                  case ENETRESET:
                  case ENOBUFS:
                  case ECONNREFUSED:
+                 case ECONNRESET:
                  case EHOSTUNREACH:
                  case ENETUNREACH:
                        /* there are others, I'm sure..... */
                  case EHOSTUNREACH:
                  case ENETUNREACH:
                        /* there are others, I'm sure..... */
index d759fea..c7cc4a5 100644 (file)
@@ -1,5 +1,5 @@
 # ifndef lint
 # ifndef lint
-static char    SccsId[] = "@(#)SendMail version 3.328 of %G%";
+static char    SccsId[] = "@(#)SendMail version 3.329 of %G%";
 # endif lint
 
 # endif lint
 
-char   Version[] = "3.328";
+char   Version[] = "3.329";