summaryrefslogtreecommitdiffstats
path: root/libexec/ftpd/ftpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/ftpd/ftpd.c')
-rw-r--r--libexec/ftpd/ftpd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index 27182de..9976967 100644
--- a/libexec/ftpd/ftpd.c
+++ b/libexec/ftpd/ftpd.c
@@ -2449,7 +2449,11 @@ delete(char *name)
}
goto done;
}
- if ((guest && noguestmod) || unlink(name) < 0) {
+ if (guest && noguestmod) {
+ reply(550, "Operation not permitted");
+ return;
+ }
+ if (unlink(name) < 0) {
perror_reply(550, name);
return;
}
OpenPOWER on IntegriCloud