diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-12 17:51:36 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-12 17:51:36 +0000 |
commit | 567020fab075b1cff79bc28883a244161e410660 (patch) | |
tree | 11f3070f73db24faab76c105a9ed7b9419aa1360 /pkgtools | |
parent | 7df87b070e56e8ca843e2b61e59fe9bbf2516b22 (diff) | |
download | pkgsrc-567020fab075b1cff79bc28883a244161e410660.tar.gz |
Reference correct variable.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/admin/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/files/admin/main.c b/pkgtools/pkg_install/files/admin/main.c index 5f3d89c4730..7e19d487785 100644 --- a/pkgtools/pkg_install/files/admin/main.c +++ b/pkgtools/pkg_install/files/admin/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.26 2007/08/12 16:47:17 joerg Exp $ */ +/* $NetBSD: main.c,v 1.27 2007/08/12 17:51:36 joerg Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -8,7 +8,7 @@ #include <sys/cdefs.h> #endif #ifndef lint -__RCSID("$NetBSD: main.c,v 1.26 2007/08/12 16:47:17 joerg Exp $"); +__RCSID("$NetBSD: main.c,v 1.27 2007/08/12 17:51:36 joerg Exp $"); #endif /* @@ -713,7 +713,7 @@ main(int argc, char *argv[]) rc = match_local_files(cwd, use_default_sfx, basep, lspattern, cwd); if (rc == -1) errx(EXIT_FAILURE, "Error from match_local_files(\"%s\", \"%s\", ...)", - cwd, base); + cwd, basep); argv++; } |