diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-04-23 19:37:56 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-04-23 19:37:56 +0200 |
commit | e9c8ef5e16b67837260b667e2f9fd2e1603f4f90 (patch) | |
tree | 1202644cdd54661a60b270561b9db0d8257fdb6b | |
parent | 8858fdf15f576a3d27afb2e552edce2a85bbcbe7 (diff) | |
download | plan9front-e9c8ef5e16b67837260b667e2f9fd2e1603f4f90.tar.xz |
ftpd: "opts utf8 on"
-rw-r--r-- | sys/src/cmd/ip/ftpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |