summaryrefslogtreecommitdiff
path: root/usr.bin/at/at.c
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-12-02 12:26:18 +0000
committerMark Murray <markm@FreeBSD.org>2001-12-02 12:26:18 +0000
commit3ce6c35745dec7bd16c368be854fbf2c85eafa40 (patch)
treeff842953cae89f6bfa561e2572decf2ed59a08f7 /usr.bin/at/at.c
parent3e9203d750937bfbedf6baa37b034b6b06941be1 (diff)
downloadsrc-test2-3ce6c35745dec7bd16c368be854fbf2c85eafa40.tar.gz
src-test2-3ce6c35745dec7bd16c368be854fbf2c85eafa40.zip
WARNS=2 fixup.
Notes
Notes: svn path=/head/; revision=87208
Diffstat (limited to 'usr.bin/at/at.c')
-rw-r--r--usr.bin/at/at.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c
index 391dd0ecd9e9..af671daad0c9 100644
--- a/usr.bin/at/at.c
+++ b/usr.bin/at/at.c
@@ -98,7 +98,7 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
/* File scope variables */
-char *no_export[] =
+const char *no_export[] =
{
"TERM", "TERMCAP", "DISPLAY", "_"
} ;
@@ -122,10 +122,11 @@ static void alarmc(int signo);
static char *cwdname(void);
static void writefile(time_t runtimer, char queue);
static void list_jobs(void);
+static long nextjob(void);
/* Signal catching functions */
-static void sigc(int signo)
+static void sigc(int signo __unused)
{
/* If the user presses ^C, remove the spool file and exit
*/
@@ -139,7 +140,7 @@ static void sigc(int signo)
_exit(EXIT_FAILURE);
}
-static void alarmc(int signo)
+static void alarmc(int signo __unused)
{
char buf[1024];
@@ -360,7 +361,7 @@ writefile(time_t runtimer, char queue)
eqp = *atenv;
else
{
- int i;
+ size_t i;
for (i=0; i<sizeof(no_export)/sizeof(no_export[0]); i++)
{
export = export
@@ -496,7 +497,7 @@ list_jobs()
runtimer = 60*(time_t) ctm;
runtime = *localtime(&runtimer);
- strftime(timestr, TIMESIZE, "%X %x", &runtime);
+ strftime(timestr, TIMESIZE, "%+", &runtime);
if (first) {
printf("Date\t\t\tOwner\tQueue\tJob#\n");
first=0;
@@ -601,9 +602,8 @@ main(int argc, char **argv)
char queue_set = 0;
char *pgm;
- enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
int program = AT; /* our default program */
- char *options = "q:f:mvldbVc"; /* default options for at */
+ const char *options = "q:f:mvldbVc";/* default options for at */
int disp_version = 0;
time_t timer;