mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-09 00:00:53 -04:00
smp: Remove unreachable initializer
Execution in this block will start with any of the case statements, never with the initialization.
This commit is contained in:
parent
23d756e4f0
commit
648709b392
@ -76,7 +76,8 @@ static void write_id(xmlTextWriterPtr writer, char *element, identification_t *i
|
|||||||
switch (id->get_type(id))
|
switch (id->get_type(id))
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
char *type = "";
|
char *type;
|
||||||
|
|
||||||
while (TRUE)
|
while (TRUE)
|
||||||
{
|
{
|
||||||
case ID_ANY:
|
case ID_ANY:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user