]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Whitespace
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 16 Sep 2021 02:15:54 +0000 (21:15 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 16 Sep 2021 02:15:54 +0000 (21:15 -0500)
src/listen/cron/proto_cron_crontab.c

index b81f36443726b88186331cc96bde044640e83942..648271ff5bdcd6e1a87ac54a3c15bed7347f76da 100644 (file)
@@ -89,7 +89,7 @@ static const CONF_PARSER crontab_listen_config[] = {
 
        { FR_CONF_OFFSET("timespec", FR_TYPE_STRING | FR_TYPE_NOT_EMPTY | FR_TYPE_REQUIRED, proto_cron_crontab_t, spec),
                        .func = time_parse },
-       
+
        CONF_PARSER_TERMINATOR
 };
 
@@ -317,7 +317,7 @@ static int time_parse(UNUSED TALLOC_CTX *ctx, void *out, void *parent, CONF_ITEM
        if (parse_field(ci, &p, "day of month", &inst->tab[2], 1, 31, offsetof(struct tm, tm_mday)) < 0) return -1;
        if (parse_field(ci, &p, "month",        &inst->tab[3], 1,12, offsetof(struct tm, tm_mon)) < 0) return -1;
        if (parse_field(ci, &p, "day of week",  &inst->tab[4], 0, 6, offsetof(struct tm, tm_wday)) < 0) return -1;
-       
+
        fr_skip_whitespace(p);
 
        if (*p) {
@@ -515,7 +515,7 @@ static bool get_next(struct tm *tm, cron_tab_t const *tab)
                return false;
        }
 
-done:  
+done:
        *(int *) (((uint8_t *) tm) + tab->offset) = num;
        return true;
 }