Differences From:
File
src/allrepo.c
part of check-in
[f438092f88]
- correct error message for "fossil all " (as per addition of "ls" subcommand alias)
by
bch on
2009-08-09 22:13:26.
[view]
To:
File
src/allrepo.c
part of check-in
[00ac7945a9]
- Disconnect the global configuration database in ~/.fossil from the
respository database in most cases. This allows multiple "sync" or
"commit" operations to be running on different repositories at the same time.
by
drh on
2009-08-13 14:27:24.
[view]
@@ -90,9 +90,9 @@
if( g.argc<3 ){
usage("list|ls|pull|push|rebuild|sync");
}
n = strlen(g.argv[2]);
- db_open_config();
+ db_open_config(1);
zCmd = g.argv[2];
if( strncmp(zCmd, "list", n)==0 ){
zCmd = "list";
}else if( strncmp(zCmd, "ls", n)==0 ){ /* alias for "list" above */