Added missing continue statement in ha socket error handling

This commit is contained in:
Tobias Brunner
2012-09-28 18:52:43 +02:00
parent 0273245877
commit a13c6a900e
+1
View File
@@ -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));