From 152b7786e42b6abae1710dd51a9eb5910d62d9e9 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 27 Dec 2012 15:48:53 +0000 Subject: [PATCH] Remove a duplicated 'const' that should have been removed in 1.24 --- encode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/encode.c b/encode.c index d7418eeb..8676fc95 100644 --- a/encode.c +++ b/encode.c @@ -1,4 +1,4 @@ -const char encode_rcs[] = "$Id: encode.c,v 1.26 2012/03/09 16:24:36 fabiankeil Exp $"; +const char encode_rcs[] = "$Id: encode.c,v 1.27 2012/03/09 17:55:49 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/encode.c,v $ @@ -47,7 +47,7 @@ const char encode_rcs[] = "$Id: encode.c,v 1.26 2012/03/09 16:24:36 fabiankeil E const char encode_h_rcs[] = ENCODE_H_VERSION; /* Maps special characters in a URL to their equivalent % codes. */ -static const char const url_code_map[256][4] = { +static const char url_code_map[256][4] = { "", "%01", "%02", "%03", "%04", "%05", "%06", "%07", "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F", "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17", "%18", "%19", "%1A", "%1B", "%1C", "%1D", -- 2.39.2