Overview
SHA1 Hash: | 77327ae14ec08e7013c7f6fea8b35ff24328bcb7 |
---|---|
Date: | 2007-08-08 14:45:20 |
User: | drh |
Comment: | Omit the files "manifest" and "_FOSSIL_" from the "extra" list. |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified src/checkin.c from [f79a5fbc49] to [c7f6520303].
@@ -147,11 +147,14 @@ db_multi_exec("CREATE TEMP TABLE sfile(x TEXT PRIMARY KEY)"); chdir(g.zLocalRoot); blob_zero(&path); vfile_scan(0, &path); db_multi_exec("DELETE FROM sfile WHERE x='FOSSIL'"); - db_prepare(&q, "SELECT x FROM sfile ORDER BY 1"); + db_prepare(&q, + "SELECT x FROM sfile" + " WHERE x NOT IN ('manifest','_FOSSIL_')" + " ORDER BY 1"); while( db_step(&q)==SQLITE_ROW ){ printf("%s\n", db_column_text(&q, 0)); } db_finalize(&q); }