CLEANUP: patterns: get rid of pattern_data_setstring()

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.
This commit is contained in:
Willy Tarreau 2011-12-16 15:35:46 +01:00
parent 5e6cc4aad8
commit 1ded605ad5

View 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;
}