summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorerh <erh@pkgsrc.org>2003-12-05 16:34:32 +0000
committererh <erh@pkgsrc.org>2003-12-05 16:34:32 +0000
commit4f33af102c36d0b69d01a957eb1c25d879b43da6 (patch)
tree4f4737800a728a227de40d1704d587d03f75bf6d /archivers
parent07a640dac138eb83e76accf6bc8cc5082c3576ed (diff)
downloadpkgsrc-4f33af102c36d0b69d01a957eb1c25d879b43da6.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");