summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorerh <erh>2003-12-05 16:34:32 +0000
committererh <erh>2003-12-05 16:34:32 +0000
commit747f9e275a8f1cda9da071a95ba8506ffb2e3fbe (patch)
tree4f4737800a728a227de40d1704d587d03f75bf6d /archivers
parent689256a2053c72dab7022f774246813f8aac6a6d (diff)
downloadpkgsrc-747f9e275a8f1cda9da071a95ba8506ffb2e3fbe.tar.gz
Fix a call to ftree_add. s/NULL/0/
Diffstat (limited to 'archivers')
-rw-r--r--archivers/pax/files/options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/pax/files/options.c b/archivers/pax/files/options.c
index 9db20e7f494..d82e0f49cfa 100644
--- a/archivers/pax/files/options.c
+++ b/archivers/pax/files/options.c
@@ -1,4 +1,4 @@
-/* $NetBSD: options.c,v 1.3 2003/09/05 18:40:53 jlam Exp $ */
+/* $NetBSD: options.c,v 1.4 2003/12/05 16:34:32 erh Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -78,7 +78,7 @@
#if 0
static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 4/18/94";
#else
-__RCSID("$NetBSD: options.c,v 1.3 2003/09/05 18:40:53 jlam Exp $");
+__RCSID("$NetBSD: options.c,v 1.4 2003/12/05 16:34:32 erh Exp $");
#endif
#endif /* not lint */
@@ -1739,7 +1739,7 @@ cpio_options(int argc, char **argv)
*/
maxflt = 0;
while ((str = getline(stdin)) != NULL) {
- ftree_add(str, NULL);
+ ftree_add(str, 0);
}
if (getline_error) {
tty_warn(1, "Problem while reading stdin");