mirror of https://github.com/BOINC/boinc.git
db_purge: fix typo that cause SQL error
This commit is contained in:
parent
fa7ded6751
commit
918dcd9179
|
@ -506,7 +506,7 @@ bool do_pass() {
|
||||||
strcat(buf, buf2);
|
strcat(buf, buf2);
|
||||||
}
|
}
|
||||||
if (id_modulus) {
|
if (id_modulus) {
|
||||||
sprintf(buf2, "and id %% %d = %d", id_modulus, id_remainder);
|
sprintf(buf2, " and id %% %d = %d", id_modulus, id_remainder);
|
||||||
strcat(buf, buf2);
|
strcat(buf, buf2);
|
||||||
}
|
}
|
||||||
if (strlen(app_name)) {
|
if (strlen(app_name)) {
|
||||||
|
|
Loading…
Reference in New Issue