summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2007-08-23 23:03:32 +0000
committerRoger Dingledine <arma@torproject.org>2007-08-23 23:03:32 +0000
commit8d524edb837a063e8d948603a117f1d4dd266174 (patch)
tree0d567435914e58380c3e9cb3374c7bd4b52a5471
parentc65131b1718cf29898164f68e163f5c92e6d49ac (diff)
downloadtor-8d524edb837a063e8d948603a117f1d4dd266174.tar.gz
tor-8d524edb837a063e8d948603a117f1d4dd266174.zip
a single quote != a single double quote. i can't hear the
circus music from here, perhaps we should move closer. svn:r11256
-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 3e6c14b0b7..8a77a6e716 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -370,9 +370,9 @@ read_escaped_data(const char *data, size_t len, int translate_newlines,
}
/** Given a pointer to a string starting at <b>start</b> containing
- * <b>in_len_max</b> characters, decode a string beginning with a single
+ * <b>in_len_max</b> characters, decode a string beginning with one double
* quote, containing any number of non-quote characters or characters escaped
- * with a backslash, and ending with a final quote. Place the resulting
+ * with a backslash, and ending with a final double quote. Place the resulting
* string (unquoted, unescaped) into a newly allocated string in *<b>out</b>;
* store its length in <b>out_len</b>. On success, return a pointer to the
* character immediately following the escaped string. On failure, return