summaryrefslogtreecommitdiffstats
path: root/src/lib/kdb/t_ulog.c
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2014-01-24 16:52:47 -0500
committerGreg Hudson <ghudson@mit.edu>2014-02-20 20:42:47 -0500
commit6a4a4b7b5e3265e4a811a9fd72c2534e6c5f5fd4 (patch)
treec7dff9c0ec49836e715f901a97724d63088b8118 /src/lib/kdb/t_ulog.c
parent71d028f1054deb186807e7c8048218b82b478422 (diff)
downloadkrb5-6a4a4b7b5e3265e4a811a9fd72c2534e6c5f5fd4.tar.gz
krb5-6a4a4b7b5e3265e4a811a9fd72c2534e6c5f5fd4.tar.xz
krb5-6a4a4b7b5e3265e4a811a9fd72c2534e6c5f5fd4.zip
Simplify ulog_map
Get rid of the caller parameter. The kproplog semantics (without -R) for mapping the ulog are simple and almost completely different from other users of the ulog, so implement them as a static helper in kproplog. With hierarchical iprop, kpropd will need the same semantics as FKCOMMAND and FKADMIND, which were already identical. Get rid of the db_args parameter, since ulog_map no longer opens the database after #7552. Remove an inoperative lseek() call when creating a new ulog file. Rename ulog_filesize to filesize and compute it from scratch each time we use it, for easier analysis. If kdb_hmagic is zero, init the ulog header but don't skip the rest of the function; it's possible that we need to expand the ulog file. Remove an unneeded conditional before calling extend_file_to for an existing ulog. ticket: 7855
Diffstat (limited to 'src/lib/kdb/t_ulog.c')
-rw-r--r--src/lib/kdb/t_ulog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/kdb/t_ulog.c b/src/lib/kdb/t_ulog.c
index 9575837802..2fb8a827ae 100644
--- a/src/lib/kdb/t_ulog.c
+++ b/src/lib/kdb/t_ulog.c
@@ -65,7 +65,7 @@ main(int argc, char **argv)
filename = argv[1];
unlink(filename);
- if (ulog_map(context, filename, 10, FKCOMMAND, NULL) != 0)
+ if (ulog_map(context, filename, 10) != 0)
abort();
lctx = context->kdblog_context;
ulog = lctx->ulog;