diff options
author | Jeremy Allison <jra@samba.org> | 2001-07-30 22:21:31 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-07-30 22:21:31 +0000 |
commit | 996719cce26700c68ff0e456e6a25d20085d091f (patch) | |
tree | 38e4e80d4fb2cd14d7d311b7ba1bc69be643b2c5 /source3/web/statuspage.c | |
parent | d17d9bee6f3d23f31f6b408e7b80630d4602c9c2 (diff) | |
download | samba-996719cce26700c68ff0e456e6a25d20085d091f.tar.gz samba-996719cce26700c68ff0e456e6a25d20085d091f.tar.xz samba-996719cce26700c68ff0e456e6a25d20085d091f.zip |
Added "use mmap" for HPUX.
Jeremy.
(This used to be commit 840802f10677cb0009cb4df4c37c7d01aa5edacd)
Diffstat (limited to 'source3/web/statuspage.c')
-rw-r--r-- | source3/web/statuspage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index 2efc37a0510..dc26e86ef88 100644 --- a/source3/web/statuspage.c +++ b/source3/web/statuspage.c @@ -187,7 +187,7 @@ void status_page(void) refresh_interval = atoi(v); } - tdb = tdb_open_log(lock_path("connections.tdb"), 0, 0, O_RDONLY, 0); + tdb = tdb_open_log(lock_path("connections.tdb"), 0, USE_TDB_MMAP_FLAG, O_RDONLY, 0); if (tdb) tdb_traverse(tdb, traverse_fn1, NULL); printf("<H2>Server Status</H2>\n"); |