Roxen.git/
server/
plugins/
protocols/
ftp.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2004-05-20
2004-05-20 23:32:03 by Stephen R. van den Berg <srb@cuci.nl>
6a70098e3c2c00eca45a6a203021a7d502144eef (
6
lines) (+
5
/-
1
)
[
Show
|
Annotate
]
Branch:
Aphoto_2.0_beta3
Missing argument information for some commands.
Rev: server/plugins/protocols/ftp.pike:2.98
4:
/* * FTP protocol mk 2 *
-
* $Id: ftp.pike,v 2.
97
2004/05/20 23:
31
:
10
_cvs_stephen Exp $
+
* $Id: ftp.pike,v 2.
98
2004/05/20 23:
32
:
03
_cvs_stephen Exp $
* * Henrik Grubbström <grubba@roxen.com> */
3366:
session->data = 0; session->misc->len = 0; session->method = "DELETE";
+
session->not_query = args;
if (open_file(args, session, "DELE")) { send(250, ({ sprintf("%s deleted.", args) }));
3387:
session->data = 0; session->misc->len = 0; session->method = "DELETE";
+
session->not_query = args;
array|object st = stat_file(args, session);
3431:
session->method = "MKDIR"; session->data = 0; session->misc->len = 0;
+
session->not_query = args;
if (open_file(args, session, "MKD")) { send(257, ({ sprintf("\"%s\" created.", args) }));