summaryrefslogtreecommitdiffstats
path: root/libexec/bootpd/readfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/bootpd/readfile.c')
-rw-r--r--libexec/bootpd/readfile.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/bootpd/readfile.c b/libexec/bootpd/readfile.c
index 7477c3f..ab583d4 100644
--- a/libexec/bootpd/readfile.c
+++ b/libexec/bootpd/readfile.c
@@ -577,7 +577,8 @@ read_entry(fp, buffer, bufsiz)
case '\\':
if ((c = fgetc(fp)) < 0) { /* Backslash */
goto done; /* EOF. . . .*/
- } /* else fall through */
+ }
+ /* FALLTHROUGH */
default:
*buffer++ = c; /* Other character, store it */
length++;
@@ -608,7 +609,7 @@ read_entry(fp, buffer, bufsiz)
goto top; /* Backslash-newline continuation */
}
}
- /* fall through if "other" character */
+ /* FALLTHROUGH if "other" character */
default:
*buffer++ = c; /* Store other characters */
length++;
OpenPOWER on IntegriCloud