]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: patterns: get rid of pattern_data_setstring()
authorWilly Tarreau <w@1wt.eu>
Fri, 16 Dec 2011 14:35:46 +0000 (15:35 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 30 Dec 2011 16:33:25 +0000 (17:33 +0100)
This function was only used to call chunk_init_len() from another chunk,
which in the end consists in simply assigning the source chunk to the
destination chunk. Let's remove this indirection to make the code clearer.
Anyway it was the only place such a function was used.

src/pattern.c

index bebeabedbd5f240ae05b25742179d95b877ff325..78728f617a8c3196e6fbb798a65f753bf90cbf75 100644 (file)
@@ -115,14 +115,6 @@ static struct chunk *get_trash_chunk(void)
        return &trash_chunk;
 }
 
-/*
-* Used to set pattern data from a struct chunk, could be the trash struct chunk
-*/
-static void pattern_data_setstring(union pattern_data *data, struct chunk *c)
-{
-       chunk_initlen(&data->str, c->str, c->size, c->len);
-}
-
 /******************************************************************/
 /*          Pattern casts functions                               */
 /******************************************************************/
@@ -141,7 +133,7 @@ static int c_ip2str(union pattern_data *data)
                return 0;
 
        trash->len = strlen(trash->str);
-       pattern_data_setstring(data, trash);
+       data->str = *trash;
 
        return 1;
 }
@@ -160,8 +152,7 @@ static int c_ipv62str(union pattern_data *data)
                return 0;
 
        trash->len = strlen(trash->str);
-       pattern_data_setstring(data, trash);
-
+       data->str = *trash;
        return 1;
 }
 
@@ -203,9 +194,7 @@ static int c_int2str(union pattern_data *data)
        trash->size = trash->size - (pos - trash->str);
        trash->str = pos;
        trash->len = strlen(pos);
-
-       pattern_data_setstring(data, trash);
-
+       data->str = *trash;
        return 1;
 }
 
@@ -215,9 +204,7 @@ static int c_datadup(union pattern_data *data)
 
        trash->len = data->str.len < trash->size ? data->str.len : trash->size;
        memcpy(trash->str, data->str.str, trash->len);
-
-       pattern_data_setstring(data, trash);
-
+       data->str = *trash;
        return 1;
 }