r18893@cathode-dark-space: tlyu | 2006-12-01 12:09:42 -0500
ticket: 3218
* src/kadmin/dbutil/dump.c (load_db): Open the dumpfile as
read-only; we only get a shared lock, so no reason to open for
writing for the sake of getting a lock.
ticket: 3218
version_fixed: 1.6
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@18963
dc483132-0cff-0310-8789-
dd5450dbe970
* Open the dumpfile
*/
if (dumpfile) {
- if ((f = fopen(dumpfile, "r+")) == NULL) {
+ if ((f = fopen(dumpfile, "r")) == NULL) {
fprintf(stderr, dfile_err_fmt, programname, dumpfile,
error_message(errno));
exit_status++;