diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-02-15 20:01:22 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-02-15 20:01:22 +0000 |
commit | 1eb3f3f3fbd73a7d0cb14642b654a687db4832f0 (patch) | |
tree | 0337e4ec9d1b18d9a154cfb211d2533a7054aecb /bin | |
parent | 2628bbc0c583fbce04c76a98382eead43fb9b013 (diff) | |
download | ATCD-1eb3f3f3fbd73a7d0cb14642b654a687db4832f0.tar.gz |
ChangeLogTag: Wed Feb 15 19:58:36 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fuzz.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/fuzz.pl b/bin/fuzz.pl index db321a5394c..96b6ba46d9b 100755 --- a/bin/fuzz.pl +++ b/bin/fuzz.pl @@ -1283,7 +1283,7 @@ sub check_for_long_file_names () @files_bor ) { if ( length( basename($file) ) >= $max_filename ) { - print_error ("File name $file exceeds $max_filename chars."); + print_error ("File name $file meets or exceeds $max_filename chars."); } } foreach $file (grep(/\.mpc$/, @files_mpc)) { @@ -1292,7 +1292,7 @@ sub check_for_long_file_names () while(<FH>) { if (/project\s*(:.*)\s*{/) { if ($blen >= $max_mpc_projectname) { - print_warning ("File name $file exceeds $max_mpc_projectname chars."); + print_warning ("File name $file meets or exceeds $max_mpc_projectname chars."); } } elsif (/project\s*\(([^\)]+)\)/) { @@ -1300,12 +1300,12 @@ sub check_for_long_file_names () if ($name =~ /\*/) { my($length) = length($name) + (($name =~ tr/*//) * $blen); if ($length >= $max_mpc_projectname) { - print_warning ("Project name ($name) from $file will exceed $max_mpc_projectname chars when expanded by MPC."); + print_warning ("Project name ($name) from $file will meet or exceed $max_mpc_projectname chars when expanded by MPC."); } } else { if (length($name) >= $max_mpc_projectname) { - print_warning ("Project name ($name) from $file exceeds $max_mpc_projectname chars."); + print_warning ("Project name ($name) from $file meets or exceeds $max_mpc_projectname chars."); } } } |