X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fpicksbr.c;h=a7276d78febe3b352327bad7730caf7d62d04083;hb=d2f12554a254e814dcdafb3828fc0d9936154eef;hp=71ae644feb76e86ce3de36196e627316ec9fea8f;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/uip/picksbr.c b/uip/picksbr.c index 71ae644..a7276d7 100644 --- a/uip/picksbr.c +++ b/uip/picksbr.c @@ -12,6 +12,7 @@ #include #include #include +#include #ifdef TIME_WITH_SYS_TIME # include @@ -868,19 +869,19 @@ tws_special (char *ap) register struct tws *tw; time (&clock); - if (!strcasecmp (ap, "today")) + if (!mh_strcasecmp (ap, "today")) return dlocaltime (&clock); - if (!strcasecmp (ap, "yesterday")) { + if (!mh_strcasecmp (ap, "yesterday")) { clock -= (long) (60 * 60 * 24); return dlocaltime (&clock); } - if (!strcasecmp (ap, "tomorrow")) { + if (!mh_strcasecmp (ap, "tomorrow")) { clock += (long) (60 * 60 * 24); return dlocaltime (&clock); } for (i = 0; tw_ldotw[i]; i++) - if (!strcasecmp (ap, tw_ldotw[i])) + if (!mh_strcasecmp (ap, tw_ldotw[i])) break; if (tw_ldotw[i]) { if ((tw = dlocaltime (&clock)) == NULL) @@ -921,7 +922,7 @@ plist state = m_getfld (state, name, buf, sizeof buf, fp); bp = add (buf, bp); } - if (!strcasecmp (name, n->n_datef)) + if (!mh_strcasecmp (name, n->n_datef)) break; if (state != FLDEOF) continue;