Problem: use of unqualified "id" in code example

Solution: use "routing_id" instead
This commit is contained in:
sigiesec
2017-09-07 11:21:13 +02:00
parent d6694e7d47
commit 1414bf938c
18 changed files with 112 additions and 111 deletions

View File

@@ -111,7 +111,7 @@ static void zap_handler (void *handler)
char *sequence = s_recv (handler);
char *domain = s_recv (handler);
char *address = s_recv (handler);
char *identity = s_recv (handler);
char *routing_id = s_recv (handler);
char *mechanism = s_recv (handler);
char *principal = s_recv (handler);
@@ -139,7 +139,7 @@ static void zap_handler (void *handler)
free (sequence);
free (domain);
free (address);
free (identity);
free (routing_id);
free (mechanism);
free (principal);
}