diff options
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/login_cap.c | 2 | ||||
-rw-r--r-- | lib/libutil/property.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/login_cap.c b/lib/libutil/login_cap.c index 55784d7..7d50128 100644 --- a/lib/libutil/login_cap.c +++ b/lib/libutil/login_cap.c @@ -245,7 +245,7 @@ login_getclassbyname(char const *name, const struct passwd *pwd) msg = "%s: no default/fallback class '%s'"; if (cgetent(&lc->lc_cap, login_dbarray, (char*)name) != 0 && r >= 0) break; - /* Fallthru - just return system defaults */ + /* FALLTHROUGH - just return system defaults */ case 0: /* success! */ if ((lc->lc_class = strdup(name)) != NULL) { if (dir) { diff --git a/lib/libutil/property.c b/lib/libutil/property.c index 815ce6c..57383f9 100644 --- a/lib/libutil/property.c +++ b/lib/libutil/property.c @@ -85,7 +85,7 @@ properties_read(int fd) ch = buf[0]; bp = 1; } - /* Fall through deliberately since we already have a character and state == LOOK */ + /* FALLTHROUGH deliberately since we already have a character and state == LOOK */ case LOOK: if (isspace(ch)) |