separate the PSK IDs by spaces

This commit is contained in:
Andreas Steffen
2007-08-06 11:52:21 +00:00
parent 64a552ae2d
commit d9f129eb1d
+4
View File
@@ -792,6 +792,10 @@ log_psk(secret_t *s)
n = BUF_LEN - 1; n = BUF_LEN - 1;
break; break;
} }
else if (n < BUF_LEN - 1)
{
n += snprintf(buf + n, BUF_LEN - n, " ");
}
id_list = id_list->next; id_list = id_list->next;
} }
while (id_list); while (id_list);