diff options
author | trasz <trasz@FreeBSD.org> | 2009-12-26 11:03:10 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2009-12-26 11:03:10 +0000 |
commit | 690bd6b42878a547aceee0005d5124b3a0a81c04 (patch) | |
tree | 7c95c93e86c5c777f128cb9ec865f99f8851302f /bin/setfacl | |
parent | b204f94963b514fb585afd0b300da6bb71e8ef33 (diff) | |
download | FreeBSD-src-690bd6b42878a547aceee0005d5124b3a0a81c04.zip FreeBSD-src-690bd6b42878a547aceee0005d5124b3a0a81c04.tar.gz |
Fix breakage introduced in last commit.
Diffstat (limited to 'bin/setfacl')
-rw-r--r-- | bin/setfacl/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/setfacl/util.c b/bin/setfacl/util.c index 3c42979..a7fb6a6 100644 --- a/bin/setfacl/util.c +++ b/bin/setfacl/util.c @@ -64,5 +64,5 @@ branding_mismatch(int brand1, int brand2) return (0); if (brand1 != brand2) return (1); - return (1); + return (0); } |