Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | fixed [fc825dcf52] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4b0f813b8c59ac8f7fbbe33c0a369acc |
| User & Date: | ron 2011-10-05 16:58:19.975 |
References
|
2011-10-07
| ||
| 02:16 | merged in trunk [4b0f813b8c]. ... (check-in: 39d9f83781 user: stephan tags: json-multitag-test, json) | |
Context
|
2011-10-07
| ||
| 18:38 | Update the built-in SQLite to the latest 3.7.9 alpha. ... (check-in: f678a7b948 user: drh tags: trunk) | |
| 02:16 | merged in trunk [4b0f813b8c]. ... (check-in: 39d9f83781 user: stephan tags: json-multitag-test, json) | |
|
2011-10-05
| ||
| 16:58 | fixed [fc825dcf52] ... (check-in: 4b0f813b8c user: ron tags: trunk) | |
| 08:00 | Added (--args -) to read from stdin. Theoretically now also strips windows newlines, but i do not have a broken editor to test that with ;). ... (check-in: 080d27a6b2 user: stephan tags: trunk) | |
Changes
Changes to src/configure.c.
| ︙ | ︙ | |||
783 784 785 786 787 788 789 790 791 792 793 794 795 796 |
void configuration_cmd(void){
int n;
const char *zMethod;
if( g.argc<3 ){
usage("export|import|merge|pull|reset ...");
}
db_find_and_open_repository(0, 0);
zMethod = g.argv[2];
n = strlen(zMethod);
if( strncmp(zMethod, "export", n)==0 ){
int mask;
const char *zSince = find_option("since",0,1);
sqlite3_int64 iStart;
if( g.argc!=5 ){
| > | 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 |
void configuration_cmd(void){
int n;
const char *zMethod;
if( g.argc<3 ){
usage("export|import|merge|pull|reset ...");
}
db_find_and_open_repository(0, 0);
db_open_config(0);
zMethod = g.argv[2];
n = strlen(zMethod);
if( strncmp(zMethod, "export", n)==0 ){
int mask;
const char *zSince = find_option("since",0,1);
sqlite3_int64 iStart;
if( g.argc!=5 ){
|
| ︙ | ︙ |