changeset 440:d19bd91842c7

Silence a GCC 7+ warning about switch case fallthrough.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 15 Sep 2017 04:49:57 +0300
parents 9b5a6fb05565
children 2991e6b52d95
files th_network.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/th_network.c	Sun May 14 13:15:59 2017 +0300
+++ b/th_network.c	Fri Sep 15 04:49:57 2017 +0300
@@ -408,7 +408,7 @@
                     "SOCKS 5 proxy userid or password is too long.\n");
                 goto out;
             }
-            //break;
+            // Intentionally fallthrough
 
         case TH_PROXY_AUTH_NONE:
             authlist[avail++] = SOCKS5_AUTH_NONE;