comparison scripts/@ftp/close.m @ 17547:e7a9be8fdd21

* @ftp/close.m: Fix function name.
author John W. Eaton <jwe@octave.org>
date Wed, 02 Oct 2013 23:33:02 -0400
parents 1c89599167a6
children d63878346099
comparison
equal deleted inserted replaced
17546:53ae37d37b16 17547:e7a9be8fdd21
21 ## Close the FTP connection represented by the FTP object @var{f}. 21 ## Close the FTP connection represented by the FTP object @var{f}.
22 ## 22 ##
23 ## @var{f} is an FTP object returned by the @code{ftp} function. 23 ## @var{f} is an FTP object returned by the @code{ftp} function.
24 ## @end deftypefn 24 ## @end deftypefn
25 25
26 function dir (f) 26 function close (f)
27 __ftp_close__ (f.curlhandle); 27 __ftp_close__ (f.curlhandle);
28 endfunction 28 endfunction
29 29