summaryrefslogtreecommitdiffstats
path: root/src/kadmin/dbutil/dump.c
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-05-03 19:02:16 +0000
committerGreg Hudson <ghudson@mit.edu>2010-05-03 19:02:16 +0000
commitd760a29547670f0501c8f36fcef27aaede85e4f3 (patch)
tree2299dd3379c97c9217082e95f8c7c0936407e73a /src/kadmin/dbutil/dump.c
parent7778a7c92be941d4e2faaf7868be0ea41cede174 (diff)
Eliminate the use of variables for format strings in kdb5_util. Many
were unused, and localization will probably be done through _() macros, not collecting all the strings together. Elminates a number of format-security static analysis defects. ticket: 6714 status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23962 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kadmin/dbutil/dump.c')
-rw-r--r--src/kadmin/dbutil/dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kadmin/dbutil/dump.c b/src/kadmin/dbutil/dump.c
index 6361271848..2258e98c07 100644
--- a/src/kadmin/dbutil/dump.c
+++ b/src/kadmin/dbutil/dump.c
@@ -1180,7 +1180,7 @@ dump_db(argc, argv)
* to be opened if we try a dump that uses it.
*/
if (!dbactive) {
- com_err(progname, 0, Err_no_database);
+ com_err(progname, 0, "Database not currently opened!");
exit_status++;
return;
}