Diff
Not logged in

Differences From:

File src/db.c part of check-in [623a9129c8] - Update to the latest SQLite. On the "Ticket" page, if "nobody" is not allowed to create new tickets but "anonymous" is, then offer a hyperlink to log in as anonymous. Change the default settings to be more secure. by drh on 2009-07-06 23:53:18. [view]

To:

File src/db.c part of check-in [ce5eb40702] - correct typo in error msg by bch on 2009-07-24 03:57:40. [view]

@@ -785,9 +785,9 @@
     }
   }
   if( access(zDbName, R_OK) || file_size(zDbName)<1024 ){
     if( access(zDbName, 0) ){
-      fossil_panic("repository does not exists or"
+      fossil_panic("repository does not exist or"
                    " is in an unreadable directory: %s", zDbName);
     }else if( access(zDbName, R_OK) ){
       fossil_panic("read permission denied for repository %s", zDbName);
     }else{