diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-11-05 18:03:14 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-11-05 18:03:14 +0000 |
commit | 3f858b5b26cc424578f5bd1ce984c651904fe8f3 (patch) | |
tree | cc960900d6c8e5a478b97fe6c9eb42eee1ed90ed | |
parent | b56d1545db0c73431f75ec08412a9a6f0e087732 (diff) | |
download | tor-3f858b5b26cc424578f5bd1ce984c651904fe8f3.tar.gz tor-3f858b5b26cc424578f5bd1ce984c651904fe8f3.zip |
Fix a compile error found under pcc. It wants single-quites to be escaped in strings, it seems.
svn:r17191
-rw-r--r-- | src/or/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/test.c b/src/or/test.c index c90a35db0b..f3e1ae18e4 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -1107,7 +1107,7 @@ test_util(void) str = parse_config_line_from_str(str, &k, &v); test_streq(k, "kseven"); - test_streq(v, "a quoted 'string"); + test_streq(v, "a quoted \'string"); tor_free(k); tor_free(v); test_assert(!strcmpstart(str, "k8 ")); |