summaryrefslogtreecommitdiff
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
parent79bb44c219af8f88573fb33954e5d2e16ef8fe42 (diff)
downloadtor-9c6d913b9e1b84ffcefb2cbd9cfe6f7bd15fc9b3.tar.gz
tor-9c6d913b9e1b84ffcefb2cbd9cfe6f7bd15fc9b3.zip
Rename smartlist_{v,}asprintf_add to smartlist_add_{v,}asprintf
-rw-r--r--src/common/util.c8
-rw-r--r--src/common/util.h4
-rw-r--r--src/or/control.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/src/common/util.c b/src/common/util.c
index 22c816abcc..a4a7006ad8 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -2757,17 +2757,17 @@ tor_sscanf(const char *buf, const char *pattern, ...)
/** Append the string produced by tor_asprintf(<b>pattern</b>, <b>...</b>)
* to <b>sl</b>. */
void
-smartlist_asprintf_add(struct smartlist_t *sl, const char *pattern, ...)
+smartlist_add_asprintf(struct smartlist_t *sl, const char *pattern, ...)
{
va_list ap;
va_start(ap, pattern);
- smartlist_vasprintf_add(sl, pattern, ap);
+ smartlist_add_vasprintf(sl, pattern, ap);
va_end(ap);
}
-/** va_list-based backend of smartlist_asprintf_add. */
+/** va_list-based backend of smartlist_add_asprintf. */
void
-smartlist_vasprintf_add(struct smartlist_t *sl, const char *pattern,
+smartlist_add_vasprintf(struct smartlist_t *sl, const char *pattern,
va_list args)
{
char *str = NULL;
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);
diff --git a/src/or/control.c b/src/or/control.c
index 60c62b15a5..a6b8e4fa92 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -4239,9 +4239,9 @@ control_event_conf_changed(smartlist_t *elements)
char *k = smartlist_get(elements, i);
char *v = smartlist_get(elements, i+1);
if (v == NULL) {
- smartlist_asprintf_add(lines, "650-%s", k);
+ smartlist_add_asprintf(lines, "650-%s", k);
} else {
- smartlist_asprintf_add(lines, "650-%s=%s", k, v);
+ smartlist_add_asprintf(lines, "650-%s=%s", k, v);
}
}
result = smartlist_join_strings(lines, "\r\n", 0, NULL);