svn commit: r201018 - head/bin/setfacl

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Dec 26 11:03:11 UTC 2009


Author: trasz
Date: Sat Dec 26 11:03:10 2009
New Revision: 201018
URL: http://svn.freebsd.org/changeset/base/201018

Log:
  Fix breakage introduced in last commit.

Modified:
  head/bin/setfacl/util.c

Modified: head/bin/setfacl/util.c
==============================================================================
--- head/bin/setfacl/util.c	Sat Dec 26 11:00:18 2009	(r201017)
+++ head/bin/setfacl/util.c	Sat Dec 26 11:03:10 2009	(r201018)
@@ -64,5 +64,5 @@ branding_mismatch(int brand1, int brand2
 		return (0);
 	if (brand1 != brand2)
 		return (1);
-	return (1);
+	return (0);
 }


More information about the svn-src-all mailing list