Applied patches from Diego

This commit is contained in:
brenosilva
2011-04-20 19:14:49 +00:00
parent 9fb9aeb6a9
commit c1d3fd6363
5 changed files with 8 additions and 17 deletions

View File

@@ -434,7 +434,7 @@ int hex2bytes_inplace(unsigned char *data, int len) {
* representation.
*/
char *bytes2hex(apr_pool_t *pool, unsigned char *data, int len) {
static unsigned char b2hex[] = "0123456789abcdef";
static const unsigned char b2hex[] = "0123456789abcdef";
char *hex = NULL;
int i, j;