From f2d8257fe428504bb3378ea1e1ddbec0c82e0b81 Mon Sep 17 00:00:00 2001 From: ajs Date: Wed, 29 Dec 2004 17:45:08 +0000 Subject: 2004-12-29 Andrew J. Schorr * watchquagga.c: In several places, cast pid_t to int for printf to avoid complaints on Solaris 8. --- watchquagga/ChangeLog | 5 +++++ watchquagga/watchquagga.c | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/watchquagga/ChangeLog b/watchquagga/ChangeLog index 28a3a297..d40c1557 100644 --- a/watchquagga/ChangeLog +++ b/watchquagga/ChangeLog @@ -1,3 +1,8 @@ +2004-12-29 Andrew J. Schorr + + * watchquagga.c: In several places, cast pid_t to int for printf to + avoid complaints on Solaris 8. + 2004-12-29 Andrew J. Schorr * watchquagga.c: Fix headers: get most stuff from zebra.h. diff --git a/watchquagga/watchquagga.c b/watchquagga/watchquagga.c index e67c61d5..fb24d75c 100644 --- a/watchquagga/watchquagga.c +++ b/watchquagga/watchquagga.c @@ -1,5 +1,5 @@ /* - $Id: watchquagga.c,v 1.7 2004/12/29 17:39:10 ajs Exp $ + $Id: watchquagga.c,v 1.8 2004/12/29 17:45:08 ajs Exp $ Monitor status of quagga daemons and restart if necessary. @@ -353,7 +353,7 @@ run_background(const char *shell_cmd) } default: /* Parent process: we will reap the child later. */ - zlog_err("Forked background command [pid %d]: %s",child,shell_cmd); + zlog_err("Forked background command [pid %d]: %s",(int)child,shell_cmd); return child; } } @@ -381,7 +381,7 @@ restart_kill(struct thread *t_kill) time_elapsed(&delay,&restart->time); zlog_warn("Warning: %s %s child process %d still running after " "%ld seconds, sending signal %d", - restart->what,restart->name,restart->pid,delay.tv_sec, + restart->what,restart->name,(int)restart->pid,delay.tv_sec, (restart->kills ? SIGKILL : SIGTERM)); kill(-restart->pid,(restart->kills ? SIGKILL : SIGTERM)); restart->kills++; @@ -443,27 +443,27 @@ sigchild(void) else { zlog_err("waitpid returned status for an unknown child process %d", - child); + (int)child); name = "(unknown)"; what = "background"; } if (WIFSTOPPED(status)) zlog_warn("warning: %s %s process %d is stopped", - what,name,child); + what,name,(int)child); else if (WIFSIGNALED(status)) zlog_warn("%s %s process %d terminated due to signal %d", - what,name,child,WTERMSIG(status)); + what,name,(int)child,WTERMSIG(status)); else if (WIFEXITED(status)) { if (WEXITSTATUS(status) != 0) zlog_warn("%s %s process %d exited with non-zero status %d", - what,name,child,WEXITSTATUS(status)); + what,name,(int)child,WEXITSTATUS(status)); else - zlog_debug("%s %s process %d exited normally",what,name,child); + zlog_debug("%s %s process %d exited normally",what,name,(int)child); } else zlog_err("cannot interpret %s %s process %d wait status 0x%x", - what,name,child,status); + what,name,(int)child,status); phase_check(); } @@ -480,7 +480,7 @@ run_job(struct restart_info *restart, const char *cmdtype, const char *command, { if (gs.loglevel > LOG_DEBUG+1) zlog_debug("cannot %s %s, previous pid %d still running", - cmdtype,restart->name,restart->pid); + cmdtype,restart->name,(int)restart->pid); return -1; } -- cgit v1.2.1