mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
crond: code shrink
This commit is contained in:
parent
d37f22225b
commit
f9000c51db
@ -287,56 +287,19 @@ static void startlogger(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static const char *const DowAry[] = {
|
static const char DowAry[] ALIGN1 =
|
||||||
"sun",
|
"sun""mon""tue""wed""thu""fri""sat"
|
||||||
"mon",
|
/* "Sun""Mon""Tue""Wed""Thu""Fri""Sat" */
|
||||||
"tue",
|
;
|
||||||
"wed",
|
|
||||||
"thu",
|
|
||||||
"fri",
|
|
||||||
"sat",
|
|
||||||
|
|
||||||
"Sun",
|
static const char MonAry[] ALIGN1 =
|
||||||
"Mon",
|
"jan""feb""mar""apr""may""jun""jul""aug""sep""oct""nov""dec"
|
||||||
"Tue",
|
/* "Jan""Feb""Mar""Apr""May""Jun""Jul""Aug""Sep""Oct""Nov""Dec" */
|
||||||
"Wed",
|
;
|
||||||
"Thu",
|
|
||||||
"Fri",
|
|
||||||
"Sat",
|
|
||||||
NULL
|
|
||||||
};
|
|
||||||
|
|
||||||
static const char *const MonAry[] = {
|
|
||||||
"jan",
|
|
||||||
"feb",
|
|
||||||
"mar",
|
|
||||||
"apr",
|
|
||||||
"may",
|
|
||||||
"jun",
|
|
||||||
"jul",
|
|
||||||
"aug",
|
|
||||||
"sep",
|
|
||||||
"oct",
|
|
||||||
"nov",
|
|
||||||
"dec",
|
|
||||||
|
|
||||||
"Jan",
|
|
||||||
"Feb",
|
|
||||||
"Mar",
|
|
||||||
"Apr",
|
|
||||||
"May",
|
|
||||||
"Jun",
|
|
||||||
"Jul",
|
|
||||||
"Aug",
|
|
||||||
"Sep",
|
|
||||||
"Oct",
|
|
||||||
"Nov",
|
|
||||||
"Dec",
|
|
||||||
NULL
|
|
||||||
};
|
|
||||||
|
|
||||||
static char *ParseField(char *user, char *ary, int modvalue, int off,
|
static char *ParseField(char *user, char *ary, int modvalue, int off,
|
||||||
const char *const *names, char *ptr)
|
const char *names, char *ptr)
|
||||||
|
/* 'names' is a pointer to a set of 3-char abbreviations */
|
||||||
{
|
{
|
||||||
char *base = ptr;
|
char *base = ptr;
|
||||||
int n1 = -1;
|
int n1 = -1;
|
||||||
@ -366,20 +329,19 @@ static char *ParseField(char *user, char *ary, int modvalue, int off,
|
|||||||
} else if (names) {
|
} else if (names) {
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; names[i]; ++i) {
|
for (i = 0; names[i]; i += 3) {
|
||||||
if (strncmp(ptr, names[i], strlen(names[i])) == 0) {
|
/* was using strncmp before... */
|
||||||
|
if (strncasecmp(ptr, &names[i], 3) == 0) {
|
||||||
|
ptr += 3;
|
||||||
|
if (n1 < 0) {
|
||||||
|
n1 = i / 3;
|
||||||
|
} else {
|
||||||
|
n2 = i / 3;
|
||||||
|
}
|
||||||
|
skip = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (names[i]) {
|
|
||||||
ptr += strlen(names[i]);
|
|
||||||
if (n1 < 0) {
|
|
||||||
n1 = i;
|
|
||||||
} else {
|
|
||||||
n2 = i;
|
|
||||||
}
|
|
||||||
skip = 1;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* handle optional range '-' */
|
/* handle optional range '-' */
|
||||||
|
Loading…
Reference in New Issue
Block a user