summaryrefslogtreecommitdiff
path: root/dh_fixperms
diff options
context:
space:
mode:
authorjoey <joey>2000-07-21 00:05:35 +0000
committerjoey <joey>2000-07-21 00:05:35 +0000
commit1d3b6f28c9aa8cf91b4f2f644ceeff01352c5b0b (patch)
treeb97fbc3f1952865924b664be1b750f6ba2fd2e0a /dh_fixperms
parenta7afc7fccd48b73037a32e511a219016ba9fee17 (diff)
r360: * Never refer to root, always uid/gid "0". Closes: #67508
Diffstat (limited to 'dh_fixperms')
-rwxr-xr-xdh_fixperms2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_fixperms b/dh_fixperms
index 191f3d08..616747e3 100755
--- a/dh_fixperms
+++ b/dh_fixperms
@@ -17,7 +17,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
# General permissions fixing.
complex_doit("find $TMP $find_options -print0",
- "2>/dev/null | xargs -0r chown --no-dereference root.root");
+ "2>/dev/null | xargs -0r chown --no-dereference 0.0");
complex_doit("find $TMP ! -type l $find_options -print0",
"2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s");