From 8eae02ff46f279cae89cefa462804e766d29177a Mon Sep 17 00:00:00 2001 From: kris Date: Sun, 26 Nov 2000 10:21:54 +0000 Subject: Constify --- libexec/bootpd/report.c | 6 +++--- libexec/bootpd/report.h | 5 +++-- 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'libexec/bootpd') diff --git a/libexec/bootpd/report.c b/libexec/bootpd/report.c index 8edb97f..191d545 100644 --- a/libexec/bootpd/report.c +++ b/libexec/bootpd/report.c @@ -94,13 +94,13 @@ static int numlevels = sizeof(levelnames) / sizeof(levelnames[0]); */ #ifdef __STDC__ void -report(int priority, char *fmt,...) +report(int priority, const char *fmt,...) #else /*VARARGS2*/ void report(priority, fmt, va_alist) int priority; - char *fmt; + const char *fmt; va_dcl #endif { @@ -136,7 +136,7 @@ report(priority, fmt, va_alist) /* * Return pointer to static string which gives full filesystem error message. */ -char * +const char * get_errmsg() { return strerror(errno); diff --git a/libexec/bootpd/report.h b/libexec/bootpd/report.h index 0bf63d6..6b96ac6 100644 --- a/libexec/bootpd/report.h +++ b/libexec/bootpd/report.h @@ -1,4 +1,5 @@ /* report.h */ +/* $FreeBSD$ */ #ifdef __STDC__ #define P(args) args @@ -7,7 +8,7 @@ #endif extern void report_init P((int nolog)); -extern void report P((int, char *, ...)); -extern char *get_errmsg P((void)); +extern void report P((int, const char *, ...)); +extern const char *get_errmsg P((void)); #undef P -- cgit v1.1