You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2008/03/17 11:59:41 UTC

svn commit: r637832 - /webservices/axis2/trunk/c/util/src/digest_calc.c

Author: pini
Date: Mon Mar 17 03:59:33 2008
New Revision: 637832

URL: http://svn.apache.org/viewvc?rev=637832&view=rev
Log:
Fixed typos

Modified:
    webservices/axis2/trunk/c/util/src/digest_calc.c

Modified: webservices/axis2/trunk/c/util/src/digest_calc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/digest_calc.c?rev=637832&r1=637831&r2=637832&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/digest_calc.c (original)
+++ webservices/axis2/trunk/c/util/src/digest_calc.c Mon Mar 17 03:59:33 2008
@@ -26,16 +26,16 @@
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
 axutil_digest_calc_get_h_a1(
-    const axutil_env_t * env,
-    char * algorithm,                      
-    char * user_name,                      
-    char * realm,                          
-    char * password,                       
-    char * nonce,                          
-    char * cnonce,                         
+    const axutil_env_t *env,
+    char *algorithm,                      
+    char *user_name,                      
+    char *realm,                          
+    char *password,                       
+    char *nonce,                          
+    char *cnonce,                         
     axutil_digest_hash_hex_t session_key)
 {
-    axutil_md5_ctx_t * ctx;
+    axutil_md5_ctx_t *ctx;
     axutil_digest_hash_t ha1;
 
     ctx = axutil_md5_ctx_create(env);
@@ -67,18 +67,18 @@
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
 axutil_digest_calc_get_response(
-    const axutil_env_t * env,
+    const axutil_env_t *env,
     axutil_digest_hash_hex_t h_a1,                       
-    char * nonce,                       
-    char * nonce_count,                 
-    char * cnonce,                      
-    char * qop,                         
-    char * method,                      
-    char * digest_uri,                  
+    char *nonce,                       
+    char *nonce_count,                 
+    char *cnonce,                      
+    char *qop,                         
+    char *method,                      
+    char *digest_uri,                  
     axutil_digest_hash_hex_t h_entity,  
     axutil_digest_hash_hex_t response)
 {
-    axutil_md5_ctx_t * ctx;
+    axutil_md5_ctx_t *ctx;
     axutil_digest_hash_t ha2;
     axutil_digest_hash_t resp_hash;
     axutil_digest_hash_hex_t ha2_hex;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org