From e9c8ef5e16b67837260b667e2f9fd2e1603f4f90 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 23 Apr 2013 19:37:56 +0200 Subject: [PATCH] ftpd: "opts utf8 on" --- sys/src/cmd/ip/ftpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/cmd/ip/ftpd.c b/sys/src/cmd/ip/ftpd.c index 3f0ee55cd..e3d52f8c2 100644 --- a/sys/src/cmd/ip/ftpd.c +++ b/sys/src/cmd/ip/ftpd.c @@ -491,7 +491,7 @@ optscmd(char *arg) } if(p = strchr(arg, ' ')) *p = 0; - if(cistrcmp(arg, "UTF-8") == 0){ + if(cistrcmp(arg, "UTF-8") == 0 || cistrcmp(arg, "UTF8") == 0){ reply("200 Command okay"); return 0; }