Module Name:    src
Committed By:   christos
Date:           Mon May 25 20:54:08 UTC 2020

Modified Files:
        src/external/bsd/ntp/dist/sntp/libopts: boolean.c configfile.c

Log Message:
Add FALLTHROUGH


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/sntp/libopts/boolean.c
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/ntp/dist/sntp/libopts/configfile.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/ntp/dist/sntp/libopts/boolean.c
diff -u src/external/bsd/ntp/dist/sntp/libopts/boolean.c:1.5 src/external/bsd/ntp/dist/sntp/libopts/boolean.c:1.6
--- src/external/bsd/ntp/dist/sntp/libopts/boolean.c:1.5	Mon May 25 16:47:34 2020
+++ src/external/bsd/ntp/dist/sntp/libopts/boolean.c	Mon May 25 16:54:07 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: boolean.c,v 1.5 2020/05/25 20:47:34 christos Exp $	*/
+/*	$NetBSD: boolean.c,v 1.6 2020/05/25 20:54:07 christos Exp $	*/
 
 
 /**
@@ -66,8 +66,8 @@ optionBooleanVal(tOptions * opts, tOptDe
         long  val = strtol(od->optArg.argString, &pz, 0);
         if ((val != 0) || (*pz != NUL))
             break;
-        /* FALLTHROUGH */
     }
+        /*FALLTHROUGH*/
     case 'N':
     case 'n':
     case 'F':

Index: src/external/bsd/ntp/dist/sntp/libopts/configfile.c
diff -u src/external/bsd/ntp/dist/sntp/libopts/configfile.c:1.9 src/external/bsd/ntp/dist/sntp/libopts/configfile.c:1.10
--- src/external/bsd/ntp/dist/sntp/libopts/configfile.c:1.9	Mon May 25 16:47:34 2020
+++ src/external/bsd/ntp/dist/sntp/libopts/configfile.c	Mon May 25 16:54:07 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: configfile.c,v 1.9 2020/05/25 20:47:34 christos Exp $	*/
+/*	$NetBSD: configfile.c,v 1.10 2020/05/25 20:54:07 christos Exp $	*/
 
 /**
  * \file configfile.c
@@ -468,7 +468,7 @@ file_preset(tOptions * opts, char const 
                 ftext = strchr(ftext + 2, '>');
                 if (ftext++ != NULL)
                     break;
-
+		/*FALLTHROUGH*/
             default:
                 ftext = NULL;
             }

Reply via email to