From 42e798271cfc2e6f58492f7ca136a2328eeff077 Mon Sep 17 00:00:00 2001 From: dwmalone Date: Mon, 7 May 2007 11:28:01 +0000 Subject: [PATCH] Make logmsg take const char * arguments. Set WARNS to 6. --- usr.bin/logger/Makefile | 1 + usr.bin/logger/logger.c | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/usr.bin/logger/Makefile b/usr.bin/logger/Makefile index 922192ce919f..6ff722452793 100644 --- a/usr.bin/logger/Makefile +++ b/usr.bin/logger/Makefile @@ -4,6 +4,7 @@ .include PROG= logger +WARNS?= 6 .if ${MK_INET6_SUPPORT} != "no" CFLAGS+= -DINET6 diff --git a/usr.bin/logger/logger.c b/usr.bin/logger/logger.c index b706f0d47092..ff3c3925cec6 100644 --- a/usr.bin/logger/logger.c +++ b/usr.bin/logger/logger.c @@ -63,7 +63,7 @@ __FBSDID("$FreeBSD$"); int decode(char *, CODE *); int pencode(char *); -static void logmessage(int, char *, char *, char *); +static void logmessage(int, const char *, const char *, const char *); static void usage(void); struct socks { @@ -89,7 +89,8 @@ int main(int argc, char *argv[]) { int ch, logflags, pri; - char *tag, *host, *svcname, buf[1024]; + char *tag, *host, buf[1024]; + const char *svcname; tag = NULL; host = NULL; @@ -175,7 +176,7 @@ main(int argc, char *argv[]) * Send the message to syslog, either on the local host, or on a remote host */ void -logmessage(int pri, char *host, char *svcname, char *buf) +logmessage(int pri, const char *host, const char *svcname, const char *buf) { static struct socks *socks; static int nsock = 0;