NULL string argument is treated as %any

This commit is contained in:
Andreas Steffen 2006-06-12 08:26:14 +00:00
parent bc35460db7
commit fec9cb332f
1 changed files with 3 additions and 0 deletions

View File

@ -828,6 +828,9 @@ static private_identification_t *identification_create(void)
identification_t *identification_create_from_string(char *string)
{
private_identification_t *this = identification_create();
if (string == NULL)
string = "%any";
if (strchr(string, '=') != NULL)
{