From: Timo Sirainen Date: Wed, 27 Feb 2013 16:00:29 +0000 (+0200) Subject: doveadm: Fixed connecting to UNIX sockets. X-Git-Tag: 2.2.rc3~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79a9e6bc573dfd0022d9880c04764b7f6afe97af;p=thirdparty%2Fdovecot%2Fcore.git doveadm: Fixed connecting to UNIX sockets. --- diff --git a/src/doveadm/doveadm-util.c b/src/doveadm/doveadm-util.c index 017a681b5c..8872c7688a 100644 --- a/src/doveadm/doveadm-util.c +++ b/src/doveadm/doveadm-util.c @@ -160,7 +160,6 @@ int doveadm_connect_with_default_port(const char *path, fd = net_connect_unix(path); if (fd == -1) i_fatal("net_connect_unix(%s) failed: %m", path); - return -1; } return fd; }