summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-08-01 19:36:57 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-08-01 19:36:57 +0000
commit82cdf18db65cd69fc9884b3a748394fd25c9fb54 (patch)
tree11e3ec9e85c258ae9fa056eaec15d389efe07b56
parent72ddb111fa8f7191c096ae25ba0d3aa84148c129 (diff)
downloadATCD-82cdf18db65cd69fc9884b3a748394fd25c9fb54.tar.gz
Make sure file with 'ChangeLog' in its name is actually file
-rwxr-xr-xbin/fuzz.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fuzz.pl b/bin/fuzz.pl
index 2538457f8de..9c8abb298dd 100755
--- a/bin/fuzz.pl
+++ b/bin/fuzz.pl
@@ -103,7 +103,7 @@ sub store_file ($)
elsif ($name =~ /\.pl$/i) {
push @files_pl, ($name);
}
- elsif ($name =~ /ChangeLog/i) {
+ elsif ($name =~ /ChangeLog/i && -f $name) {
push @files_changelog, ($name);
}
}