summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2001-09-22 00:47:09 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2001-09-22 00:47:09 +0000
commitec6303095856f3e38c534c53e73ce9f53457614f (patch)
treed0d9f6d3a46e23ef21ef968f2d2f118474b344f3
parent0e041a7bfe4655f4b2ffe4ce3f5ebe942a0151f0 (diff)
downloadtar-ec6303095856f3e38c534c53e73ce9f53457614f.tar.gz
(update_archive): Pass 0 to read_header.
-rw-r--r--src/update.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/update.c b/src/update.c
index 5f315703..754d321f 100644
--- a/src/update.c
+++ b/src/update.c
@@ -1,5 +1,7 @@
/* Update a tar archive.
- Copyright 1988, 92, 94, 96, 97, 99, 2000 Free Software Foundation, Inc.
+
+ Copyright (C) 1988, 1992, 1994, 1996, 1997, 1999, 2000, 2001 Free
+ Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -106,7 +108,7 @@ update_archive (void)
while (!found_end)
{
- enum read_header status = read_header ();
+ enum read_header status = read_header (0);
switch (status)
{