Author: vetinari
Date: Mon Jul 30 10:44:58 2007
New Revision: 760

Modified:
   trunk/qpsmtpd-prefork

Log:
prefork: fix missing "->new" after IO::Socket::INET

Modified: trunk/qpsmtpd-prefork
==============================================================================
--- trunk/qpsmtpd-prefork       (original)
+++ trunk/qpsmtpd-prefork       Mon Jul 30 10:44:58 2007
@@ -159,7 +159,7 @@
       $d = IO::Socket::INET6->new(@Socket_opts);
     }
     else {
-      $d = IO::Socket::INET(@Socket_opts);
+      $d = IO::Socket::INET->new(@Socket_opts);
     }
     die "FATAL: Failed to start daemon.\nReason: $!\n(It may be nessesary to "
       . "wait 20 secs before starting daemon again)\n"

Reply via email to