Код: Выделить всё
550 Anonymous users are not allowed to move/rename files
Как разрешить ему переименовывать и удалять файлы?
Код: Выделить всё
550 Anonymous users are not allowed to move/rename files
Код: Выделить всё
void dodele(char *name)
{
#ifndef ANON_CAN_DELETE
if (guest != 0) {
addreply_noformat(550, MSG_ANON_CANT_DELETE);
return;
}
#endif
if (name == NULL || *name == 0) {
addreply_noformat(501, MSG_NO_FILE_NAME);
Код: Выделить всё
void dodele(char *name)
{
/* #ifndef ANON_CAN_DELETE
if (guest != 0) {
addreply_noformat(550, MSG_ANON_CANT_DELETE);
return;
}
#endif
*/
if (name == NULL || *name == 0) {
addreply_noformat(501, MSG_NO_FILE_NAME);