Merge branch 'jc/cvsserver-perm-bit-fix' into maint

* jc/cvsserver-perm-bit-fix:
  cvsserver: pick up the right mode bits
This commit is contained in:
Junio C Hamano 2013-10-17 15:45:57 -07:00
commit da39d5e0bc

View File

@ -4167,7 +4167,7 @@ sub convertToDbMode
# this half-converted form, but it isn't currently worth the # this half-converted form, but it isn't currently worth the
# backwards compatibility headaches. # backwards compatibility headaches.
$mode=~/^\d\d(\d)\d{3}$/; $mode=~/^\d{3}(\d)\d\d$/;
my $userBits=$1; my $userBits=$1;
my $dbMode = ""; my $dbMode = "";