summaryrefslogtreecommitdiff
path: root/src/timezone.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/timezone.c')
-rw-r--r--src/timezone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timezone.c b/src/timezone.c
index 141bad34..2b556c28 100644
--- a/src/timezone.c
+++ b/src/timezone.c
@@ -198,13 +198,13 @@ static char *find_origin(void *src_map, struct stat *src_st,
/*
* If there is no d_type support use fstatat()
* to check if d_name is directory
- * Let the code fall through
*/
ret = fstatat(dirfd(dir), d->d_name, &buf, 0);
if (ret < 0)
continue;
if ((buf.st_mode & S_IFDIR) == 0)
continue;
+ /* fall through */
case DT_DIR:
if (subpath == NULL)
strncpy(pathname, d->d_name, sizeof(pathname));