From fbc8201238bb5a14653a77a0b20f3cf015386a03 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 20 Jul 1999 07:09:27 +0000 Subject: [PATCH] (extract_mangle): Replace #ifdef S_ISLNK with #ifdef HAVE_SYMLINK. --- src/mangle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mangle.c b/src/mangle.c index a208915..985847f 100644 --- a/src/mangle.c +++ b/src/mangle.c @@ -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 @@ -101,7 +101,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; -- 2.45.2