Revert parsedate(3) XXX as per discussion with kre@.

This commit is contained in:
simonb 2021-04-03 04:33:08 +00:00
parent 398f413a6e
commit 31ca042232
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: at.c,v 1.32 2021/04/02 06:31:53 simonb Exp $ */ /* $NetBSD: at.c,v 1.33 2021/04/03 04:33:08 simonb Exp $ */
/* /*
* at.c : Put file into atrun queue * at.c : Put file into atrun queue
@ -53,7 +53,7 @@
/* Local headers */ /* Local headers */
#include "at.h" #include "at.h"
#include "panic.h" #include "panic.h"
#include "parsetime.h" /* XXX should use parsedate(3) in <util.h> */ #include "parsetime.h"
#include "perm.h" #include "perm.h"
#include "pathnames.h" #include "pathnames.h"
#include "stime.h" #include "stime.h"
@ -71,7 +71,7 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
#if 0 #if 0
static char rcsid[] = "$OpenBSD: at.c,v 1.15 1998/06/03 16:20:26 deraadt Exp $"; static char rcsid[] = "$OpenBSD: at.c,v 1.15 1998/06/03 16:20:26 deraadt Exp $";
#else #else
__RCSID("$NetBSD: at.c,v 1.32 2021/04/02 06:31:53 simonb Exp $"); __RCSID("$NetBSD: at.c,v 1.33 2021/04/03 04:33:08 simonb Exp $");
#endif #endif
#endif #endif