Module Name:    src
Committed By:   riz
Date:           Fri Feb 24 17:50:18 UTC 2012

Modified Files:
        src/external/bsd/pkg_install/dist/add [netbsd-6]: perform.c
        src/external/bsd/pkg_install/dist/lib [netbsd-6]: version.h
Removed Files:
        src/external/bsd/pkg_install/dist/admin [netbsd-6]: README
        src/external/bsd/pkg_install/dist/delete [netbsd-6]: pkg_delete.1.in

Log Message:
external/bsd/pkg_install/dist/lib/version.h             1.9 via patch
external/bsd/pkg_install/dist/add/perform.c             1.3 via patch
external/bsd/pkg_install/dist/admin/README              delete
external/bsd/pkg_install/dist/delete/pkg_delete.1.in    delete

        Sync with the most recent version of pkg_install(1).
        [wiz, ticket #24]


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.18.6.1 -r1.1.1.18.6.2 \
    src/external/bsd/pkg_install/dist/add/perform.c
cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/pkg_install/dist/admin/README
cvs rdiff -u -r1.1.1.1 -r0 \
    src/external/bsd/pkg_install/dist/delete/pkg_delete.1.in
cvs rdiff -u -r1.7.6.1 -r1.7.6.2 \
    src/external/bsd/pkg_install/dist/lib/version.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/pkg_install/dist/add/perform.c
diff -u src/external/bsd/pkg_install/dist/add/perform.c:1.1.1.18.6.1 src/external/bsd/pkg_install/dist/add/perform.c:1.1.1.18.6.2
--- src/external/bsd/pkg_install/dist/add/perform.c:1.1.1.18.6.1	Mon Feb 20 21:41:29 2012
+++ src/external/bsd/pkg_install/dist/add/perform.c	Fri Feb 24 17:50:17 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: perform.c,v 1.1.1.18.6.1 2012/02/20 21:41:29 sborrill Exp $	*/
+/*	$NetBSD: perform.c,v 1.1.1.18.6.2 2012/02/24 17:50:17 riz Exp $	*/
 #if HAVE_CONFIG_H
 #include "config.h"
 #endif
@@ -6,7 +6,7 @@
 #if HAVE_SYS_CDEFS_H
 #include <sys/cdefs.h>
 #endif
-__RCSID("$NetBSD: perform.c,v 1.1.1.18.6.1 2012/02/20 21:41:29 sborrill Exp $");
+__RCSID("$NetBSD: perform.c,v 1.1.1.18.6.2 2012/02/24 17:50:17 riz Exp $");
 
 /*-
  * Copyright (c) 2003 Grant Beattie <[email protected]>
@@ -206,7 +206,7 @@ mkdir_p(const char *path)
 
 		if (mkdir(p, 0777) == -1) {
 			saved_errno = errno;
-			if (stat(path, &sb) == 0) {
+			if (stat(p, &sb) == 0) {
 				if (S_ISDIR(sb.st_mode))
 					goto pass;
 				errno = ENOTDIR;

Index: src/external/bsd/pkg_install/dist/lib/version.h
diff -u src/external/bsd/pkg_install/dist/lib/version.h:1.7.6.1 src/external/bsd/pkg_install/dist/lib/version.h:1.7.6.2
--- src/external/bsd/pkg_install/dist/lib/version.h:1.7.6.1	Mon Feb 20 21:41:30 2012
+++ src/external/bsd/pkg_install/dist/lib/version.h	Fri Feb 24 17:50:18 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: version.h,v 1.7.6.1 2012/02/20 21:41:30 sborrill Exp $	*/
+/*	$NetBSD: version.h,v 1.7.6.2 2012/02/24 17:50:18 riz Exp $	*/
 
 /*
  * Copyright (c) 2001 Thomas Klausner.  All rights reserved.
@@ -27,6 +27,6 @@
 #ifndef _INST_LIB_VERSION_H_
 #define _INST_LIB_VERSION_H_
 
-#define PKGTOOLS_VERSION 20120128
+#define PKGTOOLS_VERSION 20120221
 
 #endif /* _INST_LIB_VERSION_H_ */

Reply via email to