svn commit: r214276 - head/sbin/hastd

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Oct 24 15:44:23 UTC 2010


Author: pjd
Date: Sun Oct 24 15:44:23 2010
New Revision: 214276
URL: http://svn.freebsd.org/changeset/base/214276

Log:
  Simplify code a bit.
  
  MFC after:	3 days

Modified:
  head/sbin/hastd/secondary.c

Modified: head/sbin/hastd/secondary.c
==============================================================================
--- head/sbin/hastd/secondary.c	Sun Oct 24 15:42:16 2010	(r214275)
+++ head/sbin/hastd/secondary.c	Sun Oct 24 15:44:23 2010	(r214276)
@@ -318,10 +318,8 @@ init_remote(struct hast_resource *res, s
 		    (uintmax_t)res->hr_secondary_remotecnt);
 	}
 	if (hast_proto_send(res, res->hr_remotein, nvout, map, mapsize) < 0) {
-		pjdlog_errno(LOG_WARNING, "Unable to send activemap to %s",
+		pjdlog_exit(EX_TEMPFAIL, "Unable to send activemap to %s",
 		    res->hr_remoteaddr);
-		nv_free(nvout);
-		exit(EX_TEMPFAIL);
 	}
 	if (map != NULL)
 		free(map);


More information about the svn-src-head mailing list