* ikiwiki-mass-rebuild: Patch from HenrikBrixAndersen to fix order
authorJoey Hess <joey@kodama.kitenet.net>
Thu, 25 Oct 2007 11:56:54 +0000 (07:56 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Thu, 25 Oct 2007 11:56:54 +0000 (07:56 -0400)
  of permissions dropping code to work on FreeBSD.

debian/changelog
ikiwiki-mass-rebuild

index d5940163e6052469a07dc520cec9afbe5e6336b8..8cca887809586f27dac6c418a7a20602c87b56ea 100644 (file)
@@ -16,8 +16,10 @@ ikiwiki (2.11) UNRELEASED; urgency=low
   * Add handling of feeds for nested inlines, as well as support for a
     single page containing two different feeds.
   * Also fixed some places in inline that failed to use destpage correctly.
+  * ikiwiki-mass-rebuild: Patch from HenrikBrixAndersen to fix order 
+    of permissions dropping code to work on FreeBSD.
 
- -- Joey Hess <joeyh@debian.org>  Thu, 25 Oct 2007 05:14:58 -0400
+ -- Joey Hess <joeyh@debian.org>  Thu, 25 Oct 2007 07:52:43 -0400
 
 ikiwiki (2.10) unstable; urgency=low
 
index 5b6a90b9087d4ffdc841c1ed9f10143b1cbddc70..fa8bd913db1844e793062052379248e4612ef2fd 100755 (executable)
@@ -22,8 +22,8 @@ sub processline {
                my ($uuid, $ugid) = (getpwnam($user))[2, 3];
                $)="$ugid $ugid";
                $(=$ugid;
-               $>=$uuid;
                $<=$uuid;
+               $>=$uuid;
                if ($< != $uuid || $> != $uuid || $( != $ugid || $) ne "$ugid $ugid") {
                        die "failed to drop permissions to $user";
                }