Differences From:
File
src/allrepo.c
part of check-in
[9346f2290c]
- Added the "all" command for things like "fossil all sync". I am not sure
"all" is quite the right name for this command, so I may yet change it.
by
drh on
2008-10-17 00:20:21.
[view]
To:
File
src/allrepo.c
part of check-in
[02eabf94e5]
- Fix a minor problem in the previous check-in.
by
drh on
2008-10-17 00:21:21.
[view]
@@ -131,9 +131,9 @@
db_reset(&q);
while( db_step(&q)==SQLITE_ROW ){
const char *zFilename = db_column_text(&q, 0);
if( access(zFilename, 0) ){
- const char *zRepo = mprintf("repo:%s", zFilename);
+ char *zRepo = mprintf("repo:%s", zFilename);
db_unset(zRepo, 1);
free(zRepo);
}
}