summaryrefslogtreecommitdiffstats
path: root/src/slave/kproplog.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2008-11-17 21:12:01 +0000
committerKen Raeburn <raeburn@mit.edu>2008-11-17 21:12:01 +0000
commit36f5691dae18ef7cf583b58ccf14c31d6f3650d8 (patch)
tree1902d664404fafee90435557e9607b0d88601d20 /src/slave/kproplog.c
parent20b7d117a802ed93c57be9d0510cd21c45effe00 (diff)
downloadkrb5-36f5691dae18ef7cf583b58ccf14c31d6f3650d8.tar.gz
krb5-36f5691dae18ef7cf583b58ccf14c31d6f3650d8.tar.xz
krb5-36f5691dae18ef7cf583b58ccf14c31d6f3650d8.zip
Use correct update log file name in messages
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21130 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/slave/kproplog.c')
-rw-r--r--src/slave/kproplog.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/slave/kproplog.c b/src/slave/kproplog.c
index 58ce70ffef..f23a8e0509 100644
--- a/src/slave/kproplog.c
+++ b/src/slave/kproplog.c
@@ -243,12 +243,12 @@ main(int argc, char **argv)
exit(1);
}
- (void) printf(_("\nKerberos update log (%s.ulog)\n"),
- params.dbname);
+ (void) printf(_("\nKerberos update log (%s)\n"),
+ params.iprop_logfile);
if (ulog_map(context, params.iprop_logfile, 0, FKPROPLOG, db_args)) {
- (void) fprintf(stderr, _("Unable to map log file "
- "%s.ulog\n\n"), params.dbname);
+ (void) fprintf(stderr, _("Unable to map log file %s\n\n"),
+ params.iprop_logfile);
exit(1);
}
@@ -256,8 +256,8 @@ main(int argc, char **argv)
if (log_ctx)
ulog = log_ctx->ulog;
else {
- (void) fprintf(stderr, _("Unable to map log file "
- "%s.ulog\n\n"), params.dbname);
+ (void) fprintf(stderr, _("Unable to map log file %s\n\n"),
+ params.iprop_logfile);
exit(1);
}