in reply to Re: deprecation problem
in thread deprecation problem

When you are within the package called "common", all function calls are assumed to be calls to functions in that same package, unless you fully-qualify the fuction name itself. Assuming that "mytool" is a script, you were trying to call a routine that is in the main:: namespace from within the common:: namespace.

--rjray

Replies are listed 'Best First'.
Re: Re: Re: deprecation problem
by skerr1 (Sexton) on Feb 12, 2002 at 16:45 UTC
    After preceding the call to the print_usage function by "main::", that solved my problem. Thanks alot. I still have much to learn!