diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-11 09:33:38 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-11 09:33:38 +0000 |
commit | 79f09b2f178627e14c84574dcca3b464a3e8feda (patch) | |
tree | 325f032be3ceda27d424c6f869b0c7808cd78394 /src/or/control.c | |
parent | 46d563fe004320f2442db0f8a4846aa2b2546ce5 (diff) | |
download | tor-79f09b2f178627e14c84574dcca3b464a3e8feda.tar.gz tor-79f09b2f178627e14c84574dcca3b464a3e8feda.zip |
setconf orport=9001
513 Unrecognized option value
it's not unrecognized. it's unacceptable. (in this case, i still
have to consult the logs to figure out why, but at least i have
an inkling that maybe i should.)
svn:r5561
Diffstat (limited to 'src/or/control.c')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c index b4cc2123db..215abc745f 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -717,7 +717,7 @@ control_setconf_helper(connection_t *conn, uint32_t len, char *body, break; case -2: v0_err = ERR_INVALID_CONFIG_VALUE; - msg = "513 Unrecognized option value"; + msg = "513 Unacceptable option value"; break; case -3: v0_err = ERR_INVALID_CONFIG_VALUE; |