diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-12-09 01:08:32 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-12-09 01:08:32 +0000 |
commit | a9389a6b96b77788162a267a3a3b1977a13f674f (patch) | |
tree | 59e1e80c8160ea2978cc4cb5dd8ee314d9b0ca56 /bin/fuzz.pl | |
parent | 63165b00e2d667e39e15cf084128d94a563d484e (diff) | |
download | ATCD-a9389a6b96b77788162a267a3a3b1977a13f674f.tar.gz |
ChangeLogTag:Sat Dec 8 17:07:01 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'bin/fuzz.pl')
-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 5152d5a93cf..a3d6b1371b8 100755 --- a/bin/fuzz.pl +++ b/bin/fuzz.pl @@ -20,7 +20,7 @@ use Getopt::Std; # - Guards in .h files # - no global functions # - other commit_check checks, tabs, trailing spaces. -# - _narrow() should always have ACE_TRY_ENV +# - _narrow() should always have TAO_ENV_ARG_PARAMETER # - Using ACE_TRY_NEW_ENV (Nanbor suggests using ACE_DECLARE_NEW_CORBA_ENV) # # And others in ACE_Guidelines and Design Rules @@ -631,7 +631,7 @@ sub check_for_bad_ace_trace() -# This test checks missing ACE_TRY_ENV when using +# This test checks missing TAO_ENV_ARG_PARAMETER when using # resolve_initial_references sub check_for_missing_rir_env () { @@ -666,14 +666,14 @@ sub check_for_missing_rir_env () $in_rir = 1; } - if (m/ACE_TRY_ENV/) { + if (m/TAO_ENV_ARG_PARAMETER/) { $found_env = 1; } if ($in_rir == 1 && m/\;\s*$/) { $in_rir = 0; if ($found_env != 1) { - print_error ("Missing ACE_TRY_ENV in" + print_error ("Missing TAO_ENV_ARG_PARAMETER in" . " resolve_initial_references" . " in $file ($line)"); } |