diff options
Diffstat (limited to 'usr/src/cmd/tar/tar.c')
-rw-r--r-- | usr/src/cmd/tar/tar.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr/src/cmd/tar/tar.c b/usr/src/cmd/tar/tar.c index 329251c056..0d2f82d20e 100644 --- a/usr/src/cmd/tar/tar.c +++ b/usr/src/cmd/tar/tar.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -34,8 +34,6 @@ * under license from the Regents of the University of California. */ -#pragma ident "%Z%%M% %I% %E% SMI" - #include <unistd.h> #include <sys/types.h> #include <sys/param.h> @@ -4711,6 +4709,8 @@ response(void) /* Has file been modified since being put into archive? If so, return > 0. */ +static off_t lookup(char *); + static int checkupdate(char *arg) { @@ -4718,7 +4718,6 @@ checkupdate(char *arg) time_t mtime; long nsecs; off_t seekp; - static off_t lookup(char *); rewind(tfile); if ((seekp = lookup(arg)) < 0) |