summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-06-13 12:16:02 -0400
committerNick Mathewson <nickm@torproject.org>2012-06-13 12:16:02 -0400
commit37ef4f1689b51f2c78a1f02ec466b2fd34d11636 (patch)
tree7249c2c9c76bb050c731884402bfe4fad58a46b2
parentaa1fc73e3328e64e02c8bc881d6ffb6590191eea (diff)
downloadtor-37ef4f1689b51f2c78a1f02ec466b2fd34d11636.tar.gz
tor-37ef4f1689b51f2c78a1f02ec466b2fd34d11636.zip
Change smartlist_create->smartlist_new in bug4744 branch as merged to master
-rw-r--r--src/common/tortls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index cce25a8040..53bcc98919 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -1460,7 +1460,7 @@ rectify_client_ciphers(STACK_OF(SSL_CIPHER) **ciphers)
/* We need to set CLIENT_CIPHER_STACK to an array of the ciphers
* we want to use/advertise. */
int i = 0, j = 0;
- smartlist_t *unsupported = smartlist_create();
+ smartlist_t *unsupported = smartlist_new();
/* First, create a dummy SSL_CIPHER for every cipher. */
CLIENT_CIPHER_DUMMIES =