From: Michael Wallner Date: Sun, 28 Oct 2012 20:19:44 +0000 (+0000) Subject: fix typo X-Git-Tag: RELEASE_2_1_0_RC3~10^2^2~106 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=d3cd2c4fb0abc0400276e46a8452e7d9297129ce;p=m6w6%2Fext-http fix typo --- diff --git a/php_http_client.c b/php_http_client.c index 8a63acd..8f51a03 100644 --- a/php_http_client.c +++ b/php_http_client.c @@ -774,7 +774,7 @@ PHP_METHOD(HttpClient, addCookies) zval *opts = NULL; if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|a!/", &opts)) { - php_http_client_options_set_subr(getThis(), ZEND_STRS("ssl"), opts, 0 TSRMLS_CC); + php_http_client_options_set_subr(getThis(), ZEND_STRS("cookies"), opts, 0 TSRMLS_CC); RETVAL_ZVAL(getThis(), 1, 0); }