]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
- fixed spi conversion
authorMartin Willi <martin@strongswan.org>
Wed, 26 Apr 2006 12:45:15 +0000 (12:45 -0000)
committerMartin Willi <martin@strongswan.org>
Wed, 26 Apr 2006 12:45:15 +0000 (12:45 -0000)
Source/charon/sa/child_sa.c

index c2b3c4421f3917879c31fede9d2c41b7f27eb236..f5828be2ec9d9dab990d66cf6d1b70ecdae1d9b7 100644 (file)
@@ -472,7 +472,7 @@ static void log_status(private_child_sa_t *this, logger_t *logger)
        iterator_t *iterator;
        sa_policy_t *policy;
        struct protoent *proto;
-       char proto_buf[16] = "";
+       char proto_buf[8] = "";
        char *proto_name = proto_buf;
        
        if (logger == NULL)
@@ -480,8 +480,8 @@ static void log_status(private_child_sa_t *this, logger_t *logger)
                logger = this->logger;
        }
        logger->log(logger, CONTROL, "  protected with ESP (%x/%x), AH (%x,%x); traffic:",
-                               htons(this->my_esp_spi), htons(this->other_esp_spi), 
-                               htons(this->my_ah_spi), htons(this->other_ah_spi));
+                               htonl(this->my_esp_spi), htonl(this->other_esp_spi), 
+                               htonl(this->my_ah_spi), htonl(this->other_ah_spi));
        iterator = this->policies->create_iterator(this->policies, TRUE);
        while (iterator->has_next(iterator))
        {