summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorGDR! <gdr@gdr.name>2015-07-07 19:19:03 +0200
committerGDR! <gdr@gdr.name>2015-07-07 19:19:03 +0200
commit2f56b690b9f0680852ce9170747259fcb3266eaf (patch)
treed934087017a7bad66a7b155e21aa0015ecaad554 /client.c
parentf9ec09147a7589da250a9ff0b789953cb2214a3c (diff)
CID 122506 (#1 of 1): Missing return statement (MISSING_RETURN)5.
missing_return: Arriving at the end of a function without returning a value.
Diffstat (limited to 'client.c')
-rw-r--r--client.c2
1 files changed, 2 insertions, 0 deletions
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)
132 log_printf(L_ERROR, "This tunnel mode is not supported yet\n"); 132 log_printf(L_ERROR, "This tunnel mode is not supported yet\n");
133 exit(1); 133 exit(1);
134 } 134 }
135
136 return 0;
135} 137}
136 138
137/* Handle a TCP frame received from server */ 139/* Handle a TCP frame received from server */