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
+3
View File
@@ -829,6 +829,9 @@ identification_t *identification_create_from_string(char *string)
{ {
private_identification_t *this = identification_create(); private_identification_t *this = identification_create();
if (string == NULL)
string = "%any";
if (strchr(string, '=') != NULL) if (strchr(string, '=') != NULL)
{ {
/* we interpret this as an ASCII X.501 ID_DER_ASN1_DN. /* we interpret this as an ASCII X.501 ID_DER_ASN1_DN.