summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-12-03 18:47:09 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-12-03 18:47:09 +0000
commit1358acb8451b515ca81b60babb158a2363053617 (patch)
tree8f4a4479ff34b81c1675525036364ea64192c02d
parent289d7863c034d433321d52e2b4c0e4ea878df0ec (diff)
downloadmandoc-1358acb8451b515ca81b60babb158a2363053617.tar.gz
Back out lorder, which doesn't seem necessary (?). I think this means all
fields are endian-neutral, although the recno(3) key is unknown.
-rw-r--r--apropos_db.c1
-rw-r--r--mandocdb.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/apropos_db.c b/apropos_db.c
index 677ccaed..6859a914 100644
--- a/apropos_db.c
+++ b/apropos_db.c
@@ -153,7 +153,6 @@ btree_open(void)
DB *db;
memset(&info, 0, sizeof(BTREEINFO));
- info.lorder = 4321;
info.flags = R_DUP;
db = dbopen(MANDOC_DB, O_RDONLY, 0, DB_BTREE, &info);
diff --git a/mandocdb.c b/mandocdb.c
index 08884302..2c03da2a 100644
--- a/mandocdb.c
+++ b/mandocdb.c
@@ -333,7 +333,6 @@ main(int argc, char *argv[])
argv += optind;
memset(&info, 0, sizeof(BTREEINFO));
- info.lorder = 4321;
info.flags = R_DUP;
mp = mparse_alloc(MPARSE_AUTO, MANDOCLEVEL_FATAL, NULL, NULL);