diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-04 16:40:23 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-04 16:40:23 +0000 |
commit | c7314095e7141891d9cba2b48e15f1d683c7630b (patch) | |
tree | 46dfb8a278cf5c5130321af69e7734b51697e898 | |
parent | 9151843feca9342694aa661b05e0111418713509 (diff) | |
download | strongswan-c7314095e7141891d9cba2b48e15f1d683c7630b.tar.bz2 strongswan-c7314095e7141891d9cba2b48e15f1d683c7630b.tar.xz |
- fixed break
-rw-r--r-- | Source/charon/utils/identification.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/charon/utils/identification.c b/Source/charon/utils/identification.c index 83b188329..50826cb3e 100644 --- a/Source/charon/utils/identification.c +++ b/Source/charon/utils/identification.c @@ -205,6 +205,7 @@ identification_t *identification_create_from_encoding(id_type_t type, chunk_t en /* build string, must be cloned */ this->string = allocator_alloc(strlen(tmp)+1); strcpy(this->string, tmp); + break; } case ID_IPV6_ADDR: { |