From: Dmitry Stogov Date: Fri, 11 May 2007 07:19:57 +0000 (+0000) Subject: Fixed compilation error X-Git-Tag: RELEASE_1_2_0~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e0e4de3a4f53c241ca0f7bd3687c70d991d27a3;p=php Fixed compilation error --- diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 24f51c86e8..68ed03bd39 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -468,7 +468,7 @@ try_again: unsigned char hash[16]; PHP_MD5Init(&md5ctx); - snprintf(cnonce, sizeof(cnonce), "%ld", php_rand(TSRMLS_C); + snprintf(cnonce, sizeof(cnonce), "%ld", php_rand(TSRMLS_C)); PHP_MD5Update(&md5ctx, (unsigned char*)cnonce, strlen(cnonce)); PHP_MD5Final(hash, &md5ctx); make_digest(cnonce, hash);