]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a compile error found under pcc. It wants single-quites to be escaped in strings...
authorNick Mathewson <nickm@torproject.org>
Wed, 5 Nov 2008 18:03:14 +0000 (18:03 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 5 Nov 2008 18:03:14 +0000 (18:03 +0000)
svn:r17191

src/or/test.c

index c90a35db0bd630f17de362ed93e4e0ab503819ad..f3e1ae18e439b8710f3dcaca4f75f85edac693f7 100644 (file)
@@ -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 "));