]> git.cameronkatri.com Git - pw-darwin.git/blobdiff - chpass/util.c
MFhead@r322057
[pw-darwin.git] / chpass / util.c
index 07d96e227a9616a0ad3ab4d37339542f7d9c0058..baf160e8762e77564a13811a2361bb966ff87745 100644 (file)
@@ -110,10 +110,10 @@ atot(char *p, time_t *store)
                        }
                }
        }
-       if (!(t = strtok((char *)NULL, " \t,")) || !isdigit(*t))
+       if (!(t = strtok(NULL, " \t,")) || !isdigit(*t))
                goto bad;
        day = atoi(t);
-       if (!(t = strtok((char *)NULL, " \t,")) || !isdigit(*t))
+       if (!(t = strtok(NULL, " \t,")) || !isdigit(*t))
                goto bad;
        year = atoi(t);
        if (day < 1 || day > 31 || month < 1 || month > 12)