Differences From:
File
src/xfer.c
part of check-in
[bfe6e64f94]
- Fix a bug in the /xfer login logic.
by
drh on
2007-07-30 18:38:43.
[view]
To:
File
src/xfer.c
part of check-in
[71ed18cc4b]
- Do not attempt to verify phantoms. Set the default max message size at
500K instead of 1MB. Updates to the todo list.
by
drh on
2007-08-01 02:03:31.
[view]
@@ -133,9 +133,9 @@
static int send_all_pending(Blob *pOut){
int iRidSent = 0;
int sent = 0;
int nSent = 0;
- int maxSize = db_get_int("http-msg-size", 1000000);
+ int maxSize = db_get_int("http-msg-size", 500000);
Stmt q;
#if 0
db_multi_exec(
"CREATE TEMP TABLE priority(rid INTEGER PRIMARY KEY);"