summaryrefslogtreecommitdiff
path: root/src/common/util.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-01-11 13:15:52 -0500
committerNick Mathewson <nickm@torproject.org>2012-01-16 15:01:54 -0500
commit9c6d913b9e1b84ffcefb2cbd9cfe6f7bd15fc9b3 (patch)
tree059f62a882164b2cb1f6a1244a512136c882add1 /src/common/util.h
parent79bb44c219af8f88573fb33954e5d2e16ef8fe42 (diff)
downloadtor-9c6d913b9e1b84ffcefb2cbd9cfe6f7bd15fc9b3.tar.gz
tor-9c6d913b9e1b84ffcefb2cbd9cfe6f7bd15fc9b3.zip
Rename smartlist_{v,}asprintf_add to smartlist_add_{v,}asprintf
Diffstat (limited to 'src/common/util.h')
-rw-r--r--src/common/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/util.h b/src/common/util.h
index cbc56d0816..b15b1ea56a 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -218,9 +218,9 @@ int tor_sscanf(const char *buf, const char *pattern, ...)
#endif
;
-void smartlist_asprintf_add(struct smartlist_t *sl, const char *pattern, ...)
+void smartlist_add_asprintf(struct smartlist_t *sl, const char *pattern, ...)
CHECK_PRINTF(2, 3);
-void smartlist_vasprintf_add(struct smartlist_t *sl, const char *pattern,
+void smartlist_add_vasprintf(struct smartlist_t *sl, const char *pattern,
va_list args);
int hex_decode_digit(char c);