summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ypserv/yp_dblookup.c
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1997-10-29 07:25:05 +0000
committercharnier <charnier@FreeBSD.org>1997-10-29 07:25:05 +0000
commit24e614e49c313df771b3e53f2b7e9f0babf0fff0 (patch)
tree8fc9203802250babef065ef17bdcacc1fe8f311b /usr.sbin/ypserv/yp_dblookup.c
parent941e2045a2c71da41fadec9bfed70cb37decf91d (diff)
downloadFreeBSD-src-24e614e49c313df771b3e53f2b7e9f0babf0fff0.zip
FreeBSD-src-24e614e49c313df771b3e53f2b7e9f0babf0fff0.tar.gz
Typos in man page. Cosmetics in error strings.
Diffstat (limited to 'usr.sbin/ypserv/yp_dblookup.c')
-rw-r--r--usr.sbin/ypserv/yp_dblookup.c41
1 files changed, 19 insertions, 22 deletions
diff --git a/usr.sbin/ypserv/yp_dblookup.c b/usr.sbin/ypserv/yp_dblookup.c
index 81602ff..9041c09 100644
--- a/usr.sbin/ypserv/yp_dblookup.c
+++ b/usr.sbin/ypserv/yp_dblookup.c
@@ -28,28 +28,27 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $Id$
- *
*/
+
+#ifndef lint
+static const char rcsid[] =
+ "$Id$";
+#endif /* not lint */
+
+#include <db.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <paths.h>
#include <stdio.h>
#include <stdlib.h>
-#include <fcntl.h>
#include <string.h>
-#include <limits.h>
#include <unistd.h>
-#include <db.h>
#include <sys/stat.h>
#include <sys/param.h>
-#include <errno.h>
-#include <paths.h>
#include <rpcsvc/yp.h>
#include "yp_extern.h"
-#ifndef lint
-static const char rcsid[] = "$Id$";
-#endif
-
int ypdb_debug = 0;
enum ypstat yp_errno = YP_TRUE;
@@ -106,15 +105,13 @@ static struct circleq_entry *yp_malloc_qent()
q = (struct circleq_entry *)malloc(sizeof(struct circleq_entry));
if (q == NULL) {
- yp_error("failed to malloc() circleq entry: %s",
- strerror(errno));
+ yp_error("failed to malloc() circleq entry");
return(NULL);
}
bzero((char *)q, sizeof(struct circleq_entry));
q->dbptr = (struct dbent *)malloc(sizeof(struct dbent));
if (q->dbptr == NULL) {
- yp_error("failed to malloc() circleq entry: %s",
- strerror(errno));
+ yp_error("failed to malloc() circleq entry");
free(q);
return(NULL);
}
@@ -480,7 +477,7 @@ int yp_get_record(domain,map,key,data,allow)
#endif
if (ypdb_debug)
- yp_error("Looking up key [%.*s]",
+ yp_error("looking up key [%.*s]",
key->size, key->data);
/*
@@ -510,7 +507,7 @@ int yp_get_record(domain,map,key,data,allow)
}
if (ypdb_debug)
- yp_error("Result of lookup: key: [%.*s] data: [%.*s]",
+ yp_error("result of lookup: key: [%.*s] data: [%.*s]",
key->size, key->data, data->size, data->data);
#ifdef DB_CACHE
@@ -539,7 +536,7 @@ int yp_first_record(dbp,key,data,allow)
#endif
if (ypdb_debug)
- yp_error("Retrieving first key in map.");
+ yp_error("retrieving first key in map");
if ((rval = (dbp->seq)(dbp,key,data,R_FIRST)) != 0) {
#ifdef DB_CACHE
@@ -565,7 +562,7 @@ int yp_first_record(dbp,key,data,allow)
}
if (ypdb_debug)
- yp_error("Result of lookup: key: [%.*s] data: [%.*s]",
+ yp_error("result of lookup: key: [%.*s] data: [%.*s]",
key->size, key->data, data->size, data->data);
#ifdef DB_CACHE
@@ -610,7 +607,7 @@ int yp_next_record(dbp,key,data,all,allow)
}
if (ypdb_debug)
- yp_error("Retreiving next key, previous was: [%.*s]",
+ yp_error("retrieving next key, previous was: [%.*s]",
key->size, key->data);
if (!all) {
@@ -649,7 +646,7 @@ int yp_next_record(dbp,key,data,all,allow)
}
if (ypdb_debug)
- yp_error("Result of lookup: key: [%.*s] data: [%.*s]",
+ yp_error("result of lookup: key: [%.*s] data: [%.*s]",
key->size, key->data, data->size, data->data);
#ifdef DB_CACHE
OpenPOWER on IntegriCloud