remove debug cruft that was left in getdate
authorRich Felker <dalias@aerifal.cx>
Fri, 2 Mar 2012 05:24:49 +0000 (00:24 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 2 Mar 2012 05:24:49 +0000 (00:24 -0500)
src/time/getdate.c

index 26a4897..8ed650a 100644 (file)
@@ -31,8 +31,6 @@ struct tm *getdate(const char *s)
 
        while (fgets(fmt, sizeof fmt, f)) {
                p = strptime(s, fmt, &tmbuf);
-dprintf(2, "%s %s\n", s, fmt);
-dprintf(2, "%p %d\n", p, p?*p:0);
                if (p && !*p) {
                        ret = &tmbuf;
                        goto out;