home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl_ste.zip / auto / Net / FTP / authorise.al < prev    next >
Text File  |  1997-11-28  |  223b  |  12 lines

  1. # NOTE: Derived from ./blib/lib/Net/FTP.pm.  Changes made here will be lost.
  2. package Net::FTP;
  3.  
  4. sub authorise
  5. {
  6.  carp "Use of Net::FTP::authorise depreciated, use 'authorize'"
  7.     if $^W;
  8.  goto &authorize;
  9. }
  10.  
  11. 1;
  12.