]> granicus.if.org Git - apache/commitdiff
remove unnecessary cast
authorStefan Fritsch <sf@apache.org>
Sun, 16 Dec 2012 23:16:55 +0000 (23:16 +0000)
committerStefan Fritsch <sf@apache.org>
Sun, 16 Dec 2012 23:16:55 +0000 (23:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1422712 13f79535-47bb-0310-9956-ffa450edef68

server/util.c

index 3b14e101a0bb15ebffad5664aaf853613dff785b..d77719ebda6da27aabca29fd088ad96fc09c3187 100644 (file)
@@ -1961,14 +1961,13 @@ AP_DECLARE(apr_size_t) ap_escape_errorlog_item(char *dest, const char *source,
 AP_DECLARE(void) ap_bin2hex(const void *src, apr_size_t srclen, char *dest)
 {
     const unsigned char *in = src;
-    unsigned char *out = (unsigned char *)dest;
     apr_size_t i;
 
     for (i = 0; i < srclen; i++) {
-        *out++ = c2x_table[in[i] >> 4];
-        *out++ = c2x_table[in[i] & 0xf];
+        *dest++ = c2x_table[in[i] >> 4];
+        *dest++ = c2x_table[in[i] & 0xf];
     }
-    *out = '\0';
+    *dest = '\0';
 }
 
 AP_DECLARE(int) ap_is_directory(apr_pool_t *p, const char *path)