From 2f56b690b9f0680852ce9170747259fcb3266eaf Mon Sep 17 00:00:00 2001 From: GDR! Date: Tue, 7 Jul 2015 19:19:03 +0200 Subject: CID 122506 (#1 of 1): Missing return statement (MISSING_RETURN)5. missing_return: Arriving at the end of a function without returning a value. --- client.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client.c') diff --git a/client.c b/client.c index 1bd7805..33087d1 100644 --- a/client.c +++ b/client.c @@ -132,6 +132,8 @@ int handle_acktunnel_frame(protocol_frame *rcvd_frame) log_printf(L_ERROR, "This tunnel mode is not supported yet\n"); exit(1); } + + return 0; } /* Handle a TCP frame received from server */ -- cgit v1.2.3