]> granicus.if.org Git - curl/commitdiff
tool: fix remaining -Wcast-qual warnings
authorMarcel Raad <raad@teamviewer.com>
Tue, 9 May 2017 17:20:28 +0000 (19:20 +0200)
committerMarcel Raad <raad@teamviewer.com>
Tue, 9 May 2017 17:20:28 +0000 (19:20 +0200)
Avoid casting away low-level const.

src/tool_formparse.c
src/tool_getparam.c
src/tool_getparam.h

index 1bcd4c56361c87a6b591d1ff059415c586dc09d0..952377c499f75ce580934296ec18aeeb2bfdbaf0 100644 (file)
@@ -154,7 +154,7 @@ int formparse(struct OperationConfig *config,
   char type_major[128] = "";
   char type_minor[128] = "";
   char *contp;
-  const char *type = NULL;
+  char *type = NULL;
   char *sep;
 
   if((1 == sscanf(input, "%255[^=]=", name)) &&
@@ -215,7 +215,7 @@ int formparse(struct OperationConfig *config,
             }
 
             /* now point beyond the content-type specifier */
-            sep = (char *)type + strlen(type_major)+strlen(type_minor)+1;
+            sep = type + strlen(type_major)+strlen(type_minor)+1;
 
             /* there's a semicolon following - we check if it is a filename
                specified and if not we simply assume that it is text that
index fde819e8d6aca114d65791bcd3d5f46cc5584508..56bbbf18f0205c2c38a167e7076667a53ddbfe23 100644 (file)
@@ -420,10 +420,10 @@ GetFileAndPassword(char *nextarg, char **file, char **password)
   cleanarg(nextarg);
 }
 
-ParameterError getparameter(char *flag,    /* f or -long-flag */
-                            char *nextarg, /* NULL if unset */
-                            bool *usedarg, /* set to TRUE if the arg
-                                              has been used */
+ParameterError getparameter(const char *flag, /* f or -long-flag */
+                            char *nextarg,    /* NULL if unset */
+                            bool *usedarg,    /* set to TRUE if the arg
+                                                 has been used */
                             struct GlobalConfig *global,
                             struct OperationConfig *config)
 {
@@ -444,7 +444,7 @@ ParameterError getparameter(char *flag,    /* f or -long-flag */
   if(('-' != flag[0]) ||
      (('-' == flag[0]) && ('-' == flag[1]))) {
     /* this should be a long name */
-    char *word = ('-' == flag[0]) ? flag+2 : flag;
+    const char *word = ('-' == flag[0]) ? flag+2 : flag;
     size_t fnam = strlen(word);
     int numhits = 0;
 
index 4e97721edec3cd1fd5689980bf2889fffff3b266..29e158816a7e847f8d01f72247c8ca27b0c7765d 100644 (file)
@@ -47,7 +47,7 @@ typedef enum {
 struct GlobalConfig;
 struct OperationConfig;
 
-ParameterError getparameter(char *flag, char *nextarg, bool *usedarg,
+ParameterError getparameter(const char *flag, char *nextarg, bool *usedarg,
                             struct GlobalConfig *global,
                             struct OperationConfig *operation);