aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-11-09 10:21:19 +0000
committerRoger Dingledine <arma@torproject.org>2004-11-09 10:21:19 +0000
commit8d8d6b56618b431584a2bd2aa6c38f567b31e7d2 (patch)
treef704d092a760cc314b7eb6e7066e6aa15c320e1d /src
parent233f516d61a32ad788688d6dee922c4b26d92c3a (diff)
downloadtor-8d8d6b56618b431584a2bd2aa6c38f567b31e7d2.tar
tor-8d8d6b56618b431584a2bd2aa6c38f567b31e7d2.tar.gz
raise your hand if you can spell
svn:r2743
Diffstat (limited to 'src')
-rw-r--r--src/or/control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/control.c b/src/or/control.c
index 2df86d906..07795044f 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -37,7 +37,7 @@
#define CONTROL_CMD_SETEVENTS 0x0005
#define CONTROL_CMD_EVENT 0x0006
#define CONTROL_CMD_AUTHENTICATE 0x0007
-#define CONTROL_CMD_SAFECONF 0x0008
+#define CONTROL_CMD_SAVECONF 0x0008
#define _CONTROL_CMD_MAX_RECOGNIZED 0x0008
/* Recognized error codes. */
@@ -440,7 +440,7 @@ connection_control_process_inbuf(connection_t *conn) {
if (handle_control_authenticate(conn, body_len, body))
return -1;
break;
- case CONTROL_CMD_SAFECONF:
+ case CONTROL_CMD_SAVECONF:
if (handle_control_saveconf(conn, body_len, body))
return -1;
break;