diff options
author | erh <erh@pkgsrc.org> | 2003-12-05 16:34:32 +0000 |
---|---|---|
committer | erh <erh@pkgsrc.org> | 2003-12-05 16:34:32 +0000 |
commit | a74874a94463567e2518dffa2cdcee22944f04b0 (patch) | |
tree | 4f4737800a728a227de40d1704d587d03f75bf6d /archivers | |
parent | f6a2581c8bbb0e45818a44e0a6f8178ff0630325 (diff) | |
download | pkgsrc-a74874a94463567e2518dffa2cdcee22944f04b0.tar.gz |
Fix a call to ftree_add. s/NULL/0/
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/pax/files/options.c | 6 |
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"); |