]> Dogcows Code - chaz/tar/blobdiff - src/mangle.c
Lint cleanup.
[chaz/tar] / src / mangle.c
index a208915c0efcd6e630e262d25e258af0b219aa64..f6d57ba6329d7faf00ed0d2bd70b89c09ea73ef4 100644 (file)
@@ -1,5 +1,5 @@
 /* Encode long filenames for GNU tar.
-   Copyright (C) 1988, 1992, 1994, 1996, 1997 Free Software Foundation, Inc.
+   Copyright 1988, 1992, 1994, 1996, 1997, 1999 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
@@ -18,7 +18,9 @@
 #include "system.h"
 
 #include <time.h>
+#ifndef time
 time_t time ();
+#endif
 
 #include "common.h"
 
@@ -32,8 +34,8 @@ struct mangled
   };
 
 /* Should use a hash table, etc. .  */
-struct mangled *first_mangle;
-int mangled_num = 0;
+static struct mangled *first_mangle;
+static int mangled_num;
 
 /*---------------------------------------------------------------------.
 | Extract a GNUTYPE_NAMES record contents.  It seems that such are not |
@@ -101,7 +103,7 @@ extract_mangle (void)
          else if (verbose_option)
            WARN ((0, 0, _("Renamed %s to %s"), name, name_end + 4));
        }
-#ifdef S_ISLNK
+#ifdef HAVE_SYMLINK
       else if (!strncmp (cursor, "Symlink ", 8))
        {
          name = cursor + 8;
This page took 0.020573 seconds and 4 git commands to generate.