From 4a992bfdd84fa06b11129aaf4179e941abe43635 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 12 Oct 2003 07:05:16 +0000 Subject: (change_file_mode): Don't #ifdef-out a simple use of S_ISLNK. The S_IS* macros are guaranteed to be defined via system.h. --- src/chmod.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/chmod.c') diff --git a/src/chmod.c b/src/chmod.c index 5f7883502..3a073fedb 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -1,5 +1,5 @@ /* chmod -- change permission modes of files - Copyright (C) 89, 90, 91, 1995-2002 Free Software Foundation, Inc. + Copyright (C) 89, 90, 91, 1995-2003 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 @@ -158,10 +158,8 @@ change_file_mode (const char *file, const struct mode_change *changes, return 1; } -#ifdef S_ISLNK if (S_ISLNK (file_stats.st_mode)) return 0; -#endif newmode = mode_adjust (file_stats.st_mode, changes); -- cgit v1.2.3-54-g00ecf