@@ -745,7 +745,7 @@ int make_http_soap_request(zval *this_ptr,
745745 PHP_MD5Update (& md5ctx , (unsigned char * )":" , 1 );
746746 PHP_MD5Update (& md5ctx , (unsigned char * )cnonce , 8 );
747747 PHP_MD5Update (& md5ctx , (unsigned char * )":" , 1 );
748- /* TODO: Support for qop=" auth-int" */
748+ /* TODO: Support for qop=auth-int */
749749 PHP_MD5Update (& md5ctx , (unsigned char * )"auth" , sizeof ("auth" )- 1 );
750750 PHP_MD5Update (& md5ctx , (unsigned char * )":" , 1 );
751751 }
@@ -781,11 +781,11 @@ int make_http_soap_request(zval *this_ptr,
781781 }
782782 if ((tmp = zend_hash_str_find (Z_ARRVAL_P (digest ), "qop" , sizeof ("qop" )- 1 )) != NULL &&
783783 Z_TYPE_P (tmp ) == IS_STRING ) {
784- /* TODO: Support for qop=" auth-int" */
785- smart_str_append_const (& soap_headers , "\", qop=\" auth" );
786- smart_str_append_const (& soap_headers , "\" , nc=\" " );
784+ /* TODO: Support for qop=auth-int */
785+ smart_str_append_const (& soap_headers , "\", qop=auth" );
786+ smart_str_append_const (& soap_headers , ", nc=" );
787787 smart_str_appendl (& soap_headers , nc , 8 );
788- smart_str_append_const (& soap_headers , "\" , cnonce=\"" );
788+ smart_str_append_const (& soap_headers , ", cnonce=\"" );
789789 smart_str_appendl (& soap_headers , cnonce , 8 );
790790 }
791791 smart_str_append_const (& soap_headers , "\", response=\"" );
0 commit comments