浏览代码

Document what "escape" means in tor_escape_str_for_pt_args

Nick Mathewson 12 年之前
父节点
当前提交
713ff2f5ef
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      src/common/util.c

+ 2 - 3
src/common/util.c

@@ -1223,9 +1223,8 @@ escaped(const char *s)
   return escaped_val_;
 }
 
-/** Escape every character of <b>string</b> that is in
- *  <b>chars_to_escape</b>. The returned string is allocated on the
- *  heap and it's the responsibility of the caller to free it. */
+/** Return a newly allocated string equal to <b>string</b>, except that every
+ * character in <b>chars_to_escape</b> is preceded by a backslash. */
 char *
 tor_escape_str_for_pt_args(const char *string, const char *chars_to_escape)
 {