summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorGDR! <gdr@gdr.name>2015-07-07 19:18:31 +0200
committerGDR! <gdr@gdr.name>2015-07-07 19:18:31 +0200
commitf9ec09147a7589da250a9ff0b789953cb2214a3c (patch)
treeb5f62434a1d1600cb065cc3b04815ecac8e29047 /main.c
parent6b1f29cd404077f0eb76a0511e55d96d42370333 (diff)
CID 122507 (#1 of 1): Missing return statement (MISSING_RETURN)13.
missing_return: Arriving at the end of a function without returning a value.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.c b/main.c
index 7a10271..ca52f82 100644
--- a/main.c
+++ b/main.c
@@ -460,6 +460,8 @@ int handle_client_tcp_fin_frame(protocol_frame *rcvd_frame)
460 } 460 }
461 461
462 tunnel_delete(tun); 462 tunnel_delete(tun);
463
464 return 0;
463} 465}
464 466
465/* This is a dispatcher for our encapsulated protocol */ 467/* This is a dispatcher for our encapsulated protocol */