diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-09-28 18:52:00 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-09-28 18:52:43 +0200 |
commit | a13c6a900ea9abaf6f00c5213453e293b5d2723c (patch) | |
tree | 895152fb87efe7e602b3fad355ef19c32e591e78 /src/libcharon/plugins/ha/ha_socket.c | |
parent | 027324587767220b4ba2c054a38120e4eedff3d9 (diff) | |
download | strongswan-a13c6a900ea9abaf6f00c5213453e293b5d2723c.tar.bz2 strongswan-a13c6a900ea9abaf6f00c5213453e293b5d2723c.tar.xz |
Added missing continue statement in ha socket error handling
Diffstat (limited to 'src/libcharon/plugins/ha/ha_socket.c')
-rw-r--r-- | src/libcharon/plugins/ha/ha_socket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcharon/plugins/ha/ha_socket.c b/src/libcharon/plugins/ha/ha_socket.c index c02cf1021..5196a5dc7 100644 --- a/src/libcharon/plugins/ha/ha_socket.c +++ b/src/libcharon/plugins/ha/ha_socket.c @@ -138,6 +138,7 @@ METHOD(ha_socket_t, pull, ha_message_t*, DBG1(DBG_CFG, "pulling HA message failed: %s", strerror(errno)); sleep(1); + continue; } } message = ha_message_parse(chunk_create(buf, len)); |