freebsd-ports/security/fwipe/files/patch-hier.c
Martin Wilke 256f8e13d6 - Fix build problems [1]
- Fix permissions [2]

Submitted by:	pointyhat via kris [1]
                miwi [2]
Approved by:	David Thiel <lx(at)redundancy.redundancy.org> (maintainer)
2006-09-26 18:09:39 +00:00

27 lines
855 B
C

--- hier.c.orig Sat Apr 14 04:53:05 2001
+++ hier.c Tue Sep 26 08:56:49 2006
@@ -2,19 +2,15 @@
void hier()
{
- h(auto_home,-1,-1,02755);
- d(auto_home,"bin",-1,-1,02755);
+ h(auto_home,-1,-1,0755);
+ d(auto_home,"bin",-1,-1,0755);
c(auto_home,"bin","fwipe0",-1,-1,0755);
c(auto_home,"bin","echo0",-1,-1,0755);
c(auto_home,"bin","fwipe",-1,-1,0755);
- d(auto_home,"man",-1,-1,02755);
- d(auto_home,"man/man1",-1,-1,02755);
- d(auto_home,"man/cat1",-1,-1,02755);
+ d(auto_home,"man",-1,-1,0755);
+ d(auto_home,"man/man1",-1,-1,0755);
c(auto_home,"man/man1","fwipe0.1",-1,-1,0644);
- c(auto_home,"man/cat1","fwipe0.0",-1,-1,0644);
c(auto_home,"man/man1","echo0.1",-1,-1,0644);
- c(auto_home,"man/cat1","echo0.0",-1,-1,0644);
c(auto_home,"man/man1","fwipe.1",-1,-1,0644);
- c(auto_home,"man/cat1","fwipe.0",-1,-1,0644);
}