Check-in [ce5eb40702]
Not logged in
Overview

SHA1 Hash:ce5eb4070225c2898f8c932ad4654020d25c3ff3
Date: 2009-07-24 03:57:40
User: bch
Comment:correct typo in error msg
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/db.c from [f365dd4ce9] to [def90d2d54].

@@ -784,11 +784,11 @@
       db_err("unable to find the name of a repository database");
     }
   }
   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{
       fossil_panic("not a valid repository: %s", zDbName);