aboutsummaryrefslogtreecommitdiff
path: root/devel/gamin/files/patch-tests_testing.c
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2006-02-14 17:46:36 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2006-02-14 17:46:36 +0000
commit489c4edaf7e646d4e6a5f87404d124a4bd69a59b (patch)
tree6a2ca184df0aca61db8f90667da2b39499a1dc83 /devel/gamin/files/patch-tests_testing.c
parent7272553fca17796243a65a686b407567e6a4d566 (diff)
downloadports-489c4edaf7e646d4e6a5f87404d124a4bd69a59b.tar.gz
ports-489c4edaf7e646d4e6a5f87404d124a4bd69a59b.zip
Fix build on 4.X.
PR: 93271
Notes
Notes: svn path=/head/; revision=156044
Diffstat (limited to 'devel/gamin/files/patch-tests_testing.c')
-rw-r--r--devel/gamin/files/patch-tests_testing.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/devel/gamin/files/patch-tests_testing.c b/devel/gamin/files/patch-tests_testing.c
index 3485162572c0..35097790d8bc 100644
--- a/devel/gamin/files/patch-tests_testing.c
+++ b/devel/gamin/files/patch-tests_testing.c
@@ -1,6 +1,19 @@
---- tests/testing.c.orig Thu Oct 27 12:51:03 2005
-+++ tests/testing.c Tue Feb 7 08:10:40 2006
-@@ -486,9 +486,9 @@
+--- tests/testing.c.orig Thu Oct 27 10:51:03 2005
++++ tests/testing.c Tue Feb 14 17:46:01 2006
+@@ -376,11 +376,11 @@ processCommand(char *line, int no)
+ }
+ printf("chmod %s to %s\n", arg, arg2);
+ } else if (!strcmp(command, "chown")) {
++ struct stat sb;
+ if (args != 3) {
+ fprintf(stderr, "chown line %d: lacks path and owner\n", no);
+ return (-1);
+ }
+- struct stat sb;
+ if (!lstat (arg, &sb)) {
+ ret = (S_ISLNK (sb.st_mode)) ?
+ lchown(arg, strtol(arg2, NULL, 10), -1) :
+@@ -486,9 +486,9 @@ processCommand(char *line, int no)
return (-1);
}
/*