* src/kadmin/dbutil/dump.c (load_db): Open the dumpfile as
authorTom Yu <tlyu@mit.edu>
Fri, 1 Dec 2006 17:09:42 +0000 (17:09 +0000)
committerTom Yu <tlyu@mit.edu>
Fri, 1 Dec 2006 17:09:42 +0000 (17:09 +0000)
read-only; we only get a shared lock, so no reason to open for
writing for the sake of getting a lock.

ticket: 3218

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18893 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/dbutil/dump.c

index 314156ea0e2425c615168477cc6e7d18b790a995..5c627d30cf0c2786d8fde2cdadf7b58aa3d84f66 100644 (file)
@@ -2209,7 +2209,7 @@ load_db(argc, argv)
      * 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++;