summaryrefslogtreecommitdiffstats
path: root/libexec/ypxfr
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2002-04-06 19:08:02 +0000
committerdes <des@FreeBSD.org>2002-04-06 19:08:02 +0000
commit91e1b27629182e91fdc2aa4d7a505fa58115a97e (patch)
tree4e014ae54dac3fd042c9f78d213ca7f1eecd4b7d /libexec/ypxfr
parent2b4cf29e0cc981bdd83b4b780690172eb589ee91 (diff)
downloadFreeBSD-src-91e1b27629182e91fdc2aa4d7a505fa58115a97e.zip
FreeBSD-src-91e1b27629182e91fdc2aa4d7a505fa58115a97e.tar.gz
Fix warnings.
Sponsored by: DARPA, NAI Labs
Diffstat (limited to 'libexec/ypxfr')
-rw-r--r--libexec/ypxfr/ypxfr_extern.h2
-rw-r--r--libexec/ypxfr/ypxfr_main.c22
-rw-r--r--libexec/ypxfr/ypxfr_misc.c2
3 files changed, 13 insertions, 13 deletions
diff --git a/libexec/ypxfr/ypxfr_extern.h b/libexec/ypxfr/ypxfr_extern.h
index acfa105..f843b64 100644
--- a/libexec/ypxfr/ypxfr_extern.h
+++ b/libexec/ypxfr/ypxfr_extern.h
@@ -49,7 +49,7 @@ extern int debug;
extern enum ypstat yp_errno;
extern void yp_error(const char *, ...);
extern int _yp_check(char **);
-extern char *ypxfrerr_string(ypxfrstat);
+extern const char *ypxfrerr_string(ypxfrstat);
extern DB *yp_open_db_rw(const char *, const char *, const int);
extern void yp_init_dbs(void);
extern int yp_put_record(DB *, DBT *, DBT *, int);
diff --git a/libexec/ypxfr/ypxfr_main.c b/libexec/ypxfr/ypxfr_main.c
index f1be4f2..5c22d00 100644
--- a/libexec/ypxfr/ypxfr_main.c
+++ b/libexec/ypxfr/ypxfr_main.c
@@ -441,7 +441,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to write order number to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
key.data = "YP_MASTER_NAME";
@@ -451,7 +451,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to write master name to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
key.data = "YP_DOMAIN_NAME";
@@ -461,7 +461,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to write domain name to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
snprintf (buf, sizeof(buf), "%s:%s", ypxfr_source_host, ypxfr_mapname);
@@ -473,7 +473,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to write input name to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
@@ -487,7 +487,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to write output name to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
if (interdom) {
@@ -498,7 +498,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to add interdomain flag to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
}
@@ -510,7 +510,7 @@ the local domain name isn't set");
if (yp_put_record(dbp, &key, &data, 0) != YP_TRUE) {
yp_error("failed to add secure flag to database");
- ypxfr_exit(YPXFR_DBM,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_DBM,ypxfr_temp_map);
}
}
@@ -519,7 +519,7 @@ the local domain name isn't set");
if (ypxfr_get_map(ypxfr_mapname,ypxfr_source_domain,
ypxfr_source_host, ypxfr_foreach)){
yp_error("failed to retrieve map from source host");
- ypxfr_exit(YPXFR_YPERR,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_YPERR,ypxfr_temp_map);
}
(void)(dbp->close)(dbp);
@@ -537,11 +537,11 @@ leave:
yp_error("failed to get order number of %s: %s",
ypxfr_mapname, yp_errno == YPXFR_SUCC ?
"map has order 0" : ypxfrerr_string(yp_errno));
- ypxfr_exit(YPXFR_YPERR,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_YPERR,ypxfr_temp_map);
}
if (ypxfr_order != ypxfr_skew_check)
- ypxfr_exit(YPXFR_SKEW,&ypxfr_temp_map);
+ ypxfr_exit(YPXFR_SKEW,ypxfr_temp_map);
/*
* Send a YPPROC_CLEAR to the local ypserv.
@@ -555,7 +555,7 @@ leave:
xdr_void, (void *)out)) != RPC_SUCCESS) {
yp_error("failed to send 'clear' to local ypserv: %s",
clnt_sperrno((enum clnt_stat) stat));
- ypxfr_exit(YPXFR_CLEAR, &ypxfr_temp_map);
+ ypxfr_exit(YPXFR_CLEAR, ypxfr_temp_map);
}
}
diff --git a/libexec/ypxfr/ypxfr_misc.c b/libexec/ypxfr/ypxfr_misc.c
index ede4f56..3c33286 100644
--- a/libexec/ypxfr/ypxfr_misc.c
+++ b/libexec/ypxfr/ypxfr_misc.c
@@ -46,7 +46,7 @@ struct dom_binding {};
#include <rpcsvc/ypclnt.h>
#include "ypxfr_extern.h"
-char *
+const char *
ypxfrerr_string(ypxfrstat code)
{
switch (code) {
OpenPOWER on IntegriCloud