changeset 17545:2eeea8b67b63

fix incorrect function name * @ftp/saveobj.m: Call __ftp_pwd__, not __ftp_pwd.
author John W. Eaton <jwe@octave.org>
date Wed, 02 Oct 2013 19:55:44 -0400
parents fc31cd1bd503
children 53ae37d37b16
files scripts/@ftp/saveobj.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/@ftp/saveobj.m	Wed Oct 02 19:52:39 2013 -0400
+++ b/scripts/@ftp/saveobj.m	Wed Oct 02 19:55:44 2013 -0400
@@ -19,6 +19,6 @@
 function b = saveobj (a)
   b = a;
   b = rmfield (b, "curlhandle");
-  b.dir = __ftp_pwd (a.curlhandle);
+  b.dir = __ftp_pwd__ (a.curlhandle);
 endfunction