summaryrefslogtreecommitdiffstats
path: root/source/web/statuspage.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-07-30 22:21:31 +0000
committerJeremy Allison <jra@samba.org>2001-07-30 22:21:31 +0000
commit840802f10677cb0009cb4df4c37c7d01aa5edacd (patch)
tree76dc98e5bff5af6130ebfeee95b4a3dc6255fee5 /source/web/statuspage.c
parente3580b4033c551e215cb246d4e36c4870cb4a582 (diff)
downloadsamba-840802f10677cb0009cb4df4c37c7d01aa5edacd.tar.gz
samba-840802f10677cb0009cb4df4c37c7d01aa5edacd.tar.xz
samba-840802f10677cb0009cb4df4c37c7d01aa5edacd.zip
Added "use mmap" for HPUX.
Jeremy.
Diffstat (limited to 'source/web/statuspage.c')
-rw-r--r--source/web/statuspage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/web/statuspage.c b/source/web/statuspage.c
index 2efc37a0510..dc26e86ef88 100644
--- a/source/web/statuspage.c
+++ b/source/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");