maint: prefer HTTPS to HTTP, FTP in URLs
[debian/gzip] / gzip.c
diff --git a/gzip.c b/gzip.c
index 3d2aeafecc9674e9a76371198941846425545356..a4717aaad8be2fa7723f450e2ab1d094c995fec3 100644 (file)
--- a/gzip.c
+++ b/gzip.c
@@ -32,7 +32,7 @@ static char const *const license_msg[] = {
 "Copyright (C) 2016 Free Software Foundation, Inc.",
 "Copyright (C) 1993 Jean-loup Gailly.",
 "This is free software.  You may redistribute copies of it under the terms of",
-"the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.",
+"the GNU General Public License <https://www.gnu.org/licenses/gpl.html>.",
 "There is NO WARRANTY, to the extent permitted by law.",
 0};
 
@@ -599,7 +599,7 @@ int main (int argc, char **argv)
         case '4' + ENV_OPTION:  case '5' + ENV_OPTION:  case '6' + ENV_OPTION:
         case '7' + ENV_OPTION:  case '8' + ENV_OPTION:  case '9' + ENV_OPTION:
             optc -= ENV_OPTION;
-            /* Fall through.  */
+            FALLTHROUGH;
         case '1':  case '2':  case '3':  case '4':
         case '5':  case '6':  case '7':  case '8':  case '9':
             level = optc - '0';