+debhelper (1.2.31) unstable; urgency=low
+
+ * dh_installinit.1: minor typo fix (closes: #32753)
+
+ -- Joey Hess <joeyh@master.debian.org> Tue, 2 Feb 1999 14:32:46 -0800
+
debhelper (1.2.30) unstable; urgency=low
* dh_fixperms: cut down the number of chmod commands that are executed
(undef,undef,$mode,undef,$uid,$gid,undef) = stat("$TMP/$file");
# Now come up with the user and group names for the uid and gid.
$user=getpwuid($uid);
+ if (! defined $user) {
+ warning("$file has odd uid $uid, not in /etc/passwd");
+ $user=$uid;
+ }
$group=getgrgid($gid);
+ if (! defined $group) {
+ warning("$file has odd gid $gid not in /etc/group");
+ $group=$gid;
+ }
# Note that I have to print mode in ocal, stripping file type.
$sedstr=sprintf("s:#FILE#:$file:;s/#PACKAGE#/$PACKAGE/;s/#OWNER#/$user/;s/#GROUP#/$group/;s/#PERMS#/%#o/",
$mode & 07777);