mirror of
https://github.com/php/php-src.git
synced 2025-01-25 13:14:22 +08:00
Fix build
This commit is contained in:
parent
193f67d8b3
commit
de20dd7ac8
@ -589,10 +589,9 @@ try_again:
|
||||
smart_str_append_const(&soap_headers, "\", opaque=\"");
|
||||
smart_str_appends(&soap_headers, client->digest_opaque);
|
||||
}
|
||||
if (zend_hash_find(Z_ARRVAL_PP(digest), "algorithm", sizeof("algorithm"), (void **)&tmp) == SUCCESS &&
|
||||
Z_TYPE_PP(tmp) == IS_STRING) {
|
||||
if (client->digest_algorithm) {
|
||||
smart_str_append_const(&soap_headers, "\", algorithm=\"");
|
||||
smart_str_appendl(&soap_headers, Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp));
|
||||
smart_str_appends(&soap_headers, client->digest_algorithm);
|
||||
}
|
||||
smart_str_append_const(&soap_headers, "\"\r\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user