From 8d524edb837a063e8d948603a117f1d4dd266174 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 23 Aug 2007 23:03:32 +0000 Subject: [PATCH] a single quote != a single double quote. i can't hear the circus music from here, perhaps we should move closer. svn:r11256 --- src/or/control.c | 4 ++-- 1 file 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 start containing - * in_len_max characters, decode a string beginning with a single + * in_len_max 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 *out; * store its length in out_len. On success, return a pointer to the * character immediately following the escaped string. On failure, return