diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-06-13 12:16:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-06-13 12:16:02 -0400 |
commit | 37ef4f1689b51f2c78a1f02ec466b2fd34d11636 (patch) | |
tree | 7249c2c9c76bb050c731884402bfe4fad58a46b2 /src | |
parent | aa1fc73e3328e64e02c8bc881d6ffb6590191eea (diff) | |
download | tor-37ef4f1689b51f2c78a1f02ec466b2fd34d11636.tar tor-37ef4f1689b51f2c78a1f02ec466b2fd34d11636.tar.gz |
Change smartlist_create->smartlist_new in bug4744 branch as merged to master
Diffstat (limited to 'src')
-rw-r--r-- | src/common/tortls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index cce25a804..53bcc9891 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 = |