diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-07-02 20:10:26 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-07-02 20:10:26 +0000 |
commit | 561f88e306d6deb7c28853581d72c8af08a42d5c (patch) | |
tree | 31f4dca1b59cc0acdcbd0b97e8c7a4dfd2b9dbea /src/charon/kernel/kernel_interface.c | |
parent | 066518270f3fa947e683f37c91481455ce738166 (diff) | |
download | strongswan-561f88e306d6deb7c28853581d72c8af08a42d5c.tar.bz2 strongswan-561f88e306d6deb7c28853581d72c8af08a42d5c.tar.xz |
fixed typo
Diffstat (limited to 'src/charon/kernel/kernel_interface.c')
-rw-r--r-- | src/charon/kernel/kernel_interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/kernel/kernel_interface.c b/src/charon/kernel/kernel_interface.c index c290df2ea..0e06368fd 100644 --- a/src/charon/kernel/kernel_interface.c +++ b/src/charon/kernel/kernel_interface.c @@ -1782,7 +1782,7 @@ static status_t add_sa(private_kernel_interface_t *this, if (netlink_send_ack(this, this->socket_xfrm, hdr) != SUCCESS) { - DBG1(DBG_KNL, "unalbe to add SAD entry with SPI 0x%x", spi); + DBG1(DBG_KNL, "unable to add SAD entry with SPI 0x%x", spi); return FAILED; } return SUCCESS; @@ -1891,7 +1891,7 @@ static status_t update_sa(private_kernel_interface_t *this, } if (netlink_send_ack(this, this->socket_xfrm, hdr) != SUCCESS) { - DBG1(DBG_KNL, "unalbe to update SAD entry with SPI 0x%x", spi); + DBG1(DBG_KNL, "unable to update SAD entry with SPI 0x%x", spi); free(out); return FAILED; } @@ -1995,7 +1995,7 @@ static status_t del_sa(private_kernel_interface_t *this, host_t *dst, if (netlink_send_ack(this, this->socket_xfrm, hdr) != SUCCESS) { - DBG1(DBG_KNL, "unalbe to delete SAD entry with SPI 0x%x", spi); + DBG1(DBG_KNL, "unable to delete SAD entry with SPI 0x%x", spi); return FAILED; } DBG2(DBG_KNL, "deleted SAD entry with SPI 0x%x", spi); |