diff options
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -415,8 +415,12 @@ recursiveAction(const char *fileName, int recurse, int followLinks, int depthFir | |||
415 | return (FALSE); | 415 | return (FALSE); |
416 | } | 416 | } |
417 | 417 | ||
418 | if ( (followLinks == FALSE) && (S_ISLNK(statbuf.st_mode)) ) | 418 | if ( (followLinks == FALSE) && (S_ISLNK(statbuf.st_mode)) ) { |
419 | return (TRUE); | 419 | if (fileAction == NULL) |
420 | return (TRUE); | ||
421 | else | ||
422 | return (fileAction(fileName, &statbuf)); | ||
423 | } | ||
420 | 424 | ||
421 | if (recurse == FALSE) { | 425 | if (recurse == FALSE) { |
422 | if (S_ISDIR(statbuf.st_mode)) { | 426 | if (S_ISDIR(statbuf.st_mode)) { |