diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-12-01 23:55:58 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-12-01 23:55:58 +0000 |
commit | a6c0706435e0555aa583406662a52bc89aa8c926 (patch) | |
tree | 8354174d00ae6f669e835e6d8f1a8f9f2e356a9d /apropos_db.c | |
parent | b5a2d4f1d9120dceef2ae2f4a15c51f742aa5b13 (diff) | |
download | mandoc-a6c0706435e0555aa583406662a52bc89aa8c926.tar.gz |
Use OpenBSD's endian functions. Make btree type also be endian-neutral.
Diffstat (limited to 'apropos_db.c')
-rw-r--r-- | apropos_db.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apropos_db.c b/apropos_db.c index 41311ca6..6621a1a1 100644 --- a/apropos_db.c +++ b/apropos_db.c @@ -24,8 +24,6 @@ #include <string.h> #include <unistd.h> -#include <arpa/inet.h> - #ifdef __linux__ # include <db_185.h> #else @@ -177,8 +175,8 @@ btree_read(const DBT *k, const DBT *v, vp = v->data; norm_string((const char *)k->data, mc, buf); - dbv->rec = ntohl(vp->rec); - dbv->mask = vp->mask; + dbv->rec = betoh32(vp->rec); + dbv->mask = betoh64(vp->mask); return(1); } |