summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sbin/natd/natd.c2
-rw-r--r--usr.bin/logger/logger.c6
-rw-r--r--usr.sbin/syslogd/syslogd.c8
3 files changed, 8 insertions, 8 deletions
diff --git a/sbin/natd/natd.c b/sbin/natd/natd.c
index 3dbfef0..631791b 100644
--- a/sbin/natd/natd.c
+++ b/sbin/natd/natd.c
@@ -1330,7 +1330,7 @@ static void ParseOption (const char* option, const char* parms)
struct in_addr addrValue;
int max;
char* end;
- CODE* fac_record = NULL;
+ const CODE* fac_record = NULL;
/*
* Find option from table.
*/
diff --git a/usr.bin/logger/logger.c b/usr.bin/logger/logger.c
index d3c4786..49360f4 100644
--- a/usr.bin/logger/logger.c
+++ b/usr.bin/logger/logger.c
@@ -57,7 +57,7 @@ __FBSDID("$FreeBSD$");
#define SYSLOG_NAMES
#include <syslog.h>
-static int decode(char *, CODE *);
+static int decode(char *, const CODE *);
static int pencode(char *);
static void logmessage(int, const char *, const char *, const char *,
const char *);
@@ -271,9 +271,9 @@ pencode(char *s)
}
static int
-decode(char *name, CODE *codetab)
+decode(char *name, const CODE *codetab)
{
- CODE *c;
+ const CODE *c;
if (isdigit(*name))
return (atoi(name));
diff --git a/usr.sbin/syslogd/syslogd.c b/usr.sbin/syslogd/syslogd.c
index 2f42975..fff7e4c 100644
--- a/usr.sbin/syslogd/syslogd.c
+++ b/usr.sbin/syslogd/syslogd.c
@@ -312,7 +312,7 @@ static void cfline(const char *, struct filed *,
static const char *cvthname(struct sockaddr *);
static void deadq_enter(pid_t, const char *);
static int deadq_remove(pid_t);
-static int decode(const char *, CODE *);
+static int decode(const char *, const CODE *);
static void die(int);
static void dodie(int);
static void dofsync(void);
@@ -1123,7 +1123,7 @@ fprintlog(struct filed *f, int flags, const char *msg)
char p_n[5]; /* Hollow laugh */
if (LogFacPri > 1) {
- CODE *c;
+ const CODE *c;
for (c = facilitynames; c->c_name; c++) {
if (c->c_val == fac) {
@@ -2029,9 +2029,9 @@ cfline(const char *line, struct filed *f, const char *prog, const char *host)
* Decode a symbolic name to a numeric value
*/
static int
-decode(const char *name, CODE *codetab)
+decode(const char *name, const CODE *codetab)
{
- CODE *c;
+ const CODE *c;
char *p, buf[40];
if (isdigit(*name))
OpenPOWER on IntegriCloud