diff options
author | Roger Dingledine <arma@torproject.org> | 2005-10-05 02:09:27 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-10-05 02:09:27 +0000 |
commit | be478bb56ca6df214ddb2778158be24cad9af0b6 (patch) | |
tree | 7731aeff6cbd4c7fff286ab32be792609ca0def0 | |
parent | 843459558438d381c9040cba0216e7fa877ecbe1 (diff) | |
download | tor-be478bb56ca6df214ddb2778158be24cad9af0b6.tar tor-be478bb56ca6df214ddb2778158be24cad9af0b6.tar.gz |
stutter therapy lessons
svn:r5191
-rw-r--r-- | src/or/control.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/or/control.c b/src/or/control.c index 873d5a311..f6fa4ab14 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -1454,8 +1454,8 @@ handle_control_getinfo(connection_t *conn, uint32_t len, const char *body) return 0; } -/** Callled when we get an EXTENDCIRCUIT message. Try to extend the listed - * circuit, and report succcess or failure. */ +/** Called when we get an EXTENDCIRCUIT message. Try to extend the listed + * circuit, and report success or failure. */ static int handle_control_extendcircuit(connection_t *conn, uint32_t len, const char *body) @@ -1584,8 +1584,8 @@ handle_control_extendcircuit(connection_t *conn, uint32_t len, return 0; } -/** Callled when we get an ATTACHSTREAM message. Try to attach the requested - * stream, and report succcess or failure. */ +/** Called when we get an ATTACHSTREAM message. Try to attach the requested + * stream, and report success or failure. */ static int handle_control_attachstream(connection_t *conn, uint32_t len, const char *body) @@ -1677,8 +1677,8 @@ handle_control_attachstream(connection_t *conn, uint32_t len, return 0; } -/** Callled when we get a POSTDESCRIPTORT message. Try to learn the provided - * descriptor, and report succcess or failure. */ +/** Called when we get a POSTDESCRIPTOR message. Try to learn the provided + * descriptor, and report success or failure. */ static int handle_control_postdescriptor(connection_t *conn, uint32_t len, const char *body) |