delete useless casts. ok deraadt guenther millert
authortedu <tedu@openbsd.org>
Thu, 22 Jan 2015 22:38:55 +0000 (22:38 +0000)
committertedu <tedu@openbsd.org>
Thu, 22 Jan 2015 22:38:55 +0000 (22:38 +0000)
usr.sbin/cron/atrun.c
usr.sbin/cron/cron.c
usr.sbin/cron/entry.c
usr.sbin/cron/job.c
usr.sbin/cron/misc.c
usr.sbin/cron/user.c

index 5a573d9..74b3ff9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: atrun.c,v 1.24 2015/01/19 01:05:32 deraadt Exp $      */
+/*     $OpenBSD: atrun.c,v 1.25 2015/01/22 22:38:55 tedu Exp $ */
 
 /*
  * Copyright (c) 2002-2003 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -91,7 +91,7 @@ scan_atjobs(at_db *old_db, struct timeval *tv)
                        continue;
                queue = (unsigned char)ep[1];
 
-               job = (atjob *)malloc(sizeof(*job));
+               job = malloc(sizeof(*job));
                if (job == NULL) {
                        for (job = new_db.head; job != NULL; ) {
                                tjob = job;
@@ -392,7 +392,7 @@ run_job(atjob *job, char *atfile)
                log_close();
 
                /* Connect grandchild's stdin to the at job file. */
-               if (lseek(fd, (off_t) 0, SEEK_SET) < 0) {
+               if (lseek(fd, 0, SEEK_SET) < 0) {
                        perror("lseek");
                        _exit(EXIT_FAILURE);
                }
index 3ca77b8..e827b24 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cron.c,v 1.47 2015/01/14 17:27:29 millert Exp $       */
+/*     $OpenBSD: cron.c,v 1.48 2015/01/22 22:38:55 tedu Exp $  */
 
 /* Copyright 1988,1990,1993,1994 by Paul Vixie
  * All rights reserved
@@ -137,11 +137,11 @@ main(int argc, char *argv[]) {
        cronSock = open_socket();
        database.head = NULL;
        database.tail = NULL;
-       database.mtime = (time_t) 0;
+       database.mtime = 0;
        load_database(&database);
        at_database.head = NULL;
        at_database.tail = NULL;
-       at_database.mtime = (time_t) 0;
+       at_database.mtime = 0;
        scan_atjobs(&at_database, NULL);
        set_time(TRUE);
        run_reboot_jobs(&database);
@@ -409,7 +409,7 @@ cron_sleep(time_t target) {
                                (void) read(fd, &poke, 1);
                                close(fd);
                                if (poke & RELOAD_CRON) {
-                                       database.mtime = (time_t)0;
+                                       database.mtime = 0;
                                        load_database(&database);
                                }
                                if (poke & RELOAD_AT) {
@@ -419,7 +419,7 @@ cron_sleep(time_t target) {
                                         * jobs immediately.
                                         */
                                        gettimeofday(&t2, NULL);
-                                       at_database.mtime = (time_t)0;
+                                       at_database.mtime = 0;
                                        if (scan_atjobs(&at_database, &t2))
                                                atrun(&at_database,
                                                    batch_maxload, t2.tv_sec);
index 2a4fffd..547be2f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: entry.c,v 1.35 2015/01/14 17:27:51 millert Exp $      */
+/*     $OpenBSD: entry.c,v 1.36 2015/01/22 22:38:55 tedu Exp $ */
 
 /*
  * Copyright 1988,1990,1993,1994 by Paul Vixie
@@ -103,7 +103,7 @@ load_entry(FILE *file, void (*error_func)(const char *), struct passwd *pw,
         * of a list of minutes.
         */
 
-       e = (entry *) calloc(sizeof(entry), sizeof(char));
+       e = calloc(sizeof(entry), sizeof(char));
        if (e == NULL) {
                ecode = e_memory;
                goto eof;
index 2bc2c04..aa18dee 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: job.c,v 1.8 2009/10/27 23:59:51 deraadt Exp $ */
+/*     $OpenBSD: job.c,v 1.9 2015/01/22 22:38:55 tedu Exp $    */
 
 /* Copyright 1988,1990,1993,1994 by Paul Vixie
  * All rights reserved
@@ -41,7 +41,7 @@ job_add(entry *e, user *u) {
                        return;
 
        /* build a job queue element */
-       if ((j = (job *)malloc(sizeof(job))) == NULL)
+       if ((j = malloc(sizeof(job))) == NULL)
                return;
        j->next = NULL;
        j->e = e;
index f3a1ef5..158b4c1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: misc.c,v 1.50 2015/01/14 17:27:30 millert Exp $       */
+/*     $OpenBSD: misc.c,v 1.51 2015/01/22 22:38:55 tedu Exp $  */
 
 /* Copyright 1988,1990,1993,1994 by Paul Vixie
  * All rights reserved
@@ -291,9 +291,9 @@ acquire_daemonlock(int closeflag) {
        }
 
        snprintf(buf, sizeof(buf), "%ld\n", (long)getpid());
-       (void) lseek(fd, (off_t)0, SEEK_SET);
+       (void) lseek(fd, 0, SEEK_SET);
        num = write(fd, buf, strlen(buf));
-       (void) ftruncate(fd, (off_t)num);
+       (void) ftruncate(fd, num);
 
        /* abandon fd even though the file is open. we need to keep
         * it open and locked, but we don't need the handles elsewhere.
@@ -333,7 +333,7 @@ get_string(char *string, int size, FILE *file, char *terms) {
 
        while (EOF != (ch = get_char(file)) && !strchr(terms, ch)) {
                if (size > 1) {
-                       *string++ = (char) ch;
+                       *string++ = ch;
                        size--;
                }
        }
index 29643f4..bca609d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: user.c,v 1.8 2009/10/27 23:59:51 deraadt Exp $        */
+/*     $OpenBSD: user.c,v 1.9 2015/01/22 22:38:55 tedu Exp $   */
 
 /* Copyright 1988,1990,1993,1994 by Paul Vixie
  * All rights reserved
@@ -56,7 +56,7 @@ load_user(int crontab_fd, struct passwd       *pw, const char *name) {
 
        /* file is open.  build user entry, then read the crontab file.
         */
-       if ((u = (user *) malloc(sizeof(user))) == NULL)
+       if ((u = malloc(sizeof(user))) == NULL)
                return (NULL);
        if ((u->name = strdup(name)) == NULL) {
                save_errno = errno;