diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-27 11:38:24 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-27 11:38:24 +0000 |
commit | eea353466ec86ad5fd3fc4fb7ac560ebced64f3d (patch) | |
tree | aa0908775b34dbce4b98526c1cfce7fd82a34074 /Source/charon/sa/child_sa.c | |
parent | f1e87b9022fa68ea4cc38317eea1a59a41a5ae3d (diff) | |
download | strongswan-eea353466ec86ad5fd3fc4fb7ac560ebced64f3d.tar.bz2 strongswan-eea353466ec86ad5fd3fc4fb7ac560ebced64f3d.tar.xz |
- reworked usage of IDs in various states
- using ID_ANY for any, not NULL as before
- initiator sends IDr payload in IKE_AUTH when ID unique
Diffstat (limited to 'Source/charon/sa/child_sa.c')
-rw-r--r-- | Source/charon/sa/child_sa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/sa/child_sa.c b/Source/charon/sa/child_sa.c index 8871b73a1..a678ea9b8 100644 --- a/Source/charon/sa/child_sa.c +++ b/Source/charon/sa/child_sa.c @@ -479,7 +479,7 @@ static void log_status(private_child_sa_t *this, logger_t *logger, char* name) { logger = this->logger; } - logger->log(logger, CONTROL|LEVEL1, "\"%s\": protected with ESP (%x/%x), AH (%x,%x):", + logger->log(logger, CONTROL|LEVEL1, "\"%s\": protected with ESP (0x%x/0x%x), AH (0x%x,0x%x):", name, htonl(this->my_esp_spi), htonl(this->other_esp_spi), htonl(this->my_ah_spi), htonl(this->other_ah_spi)); |