This commit is contained in:
irungentoo 2013-09-21 08:55:14 -04:00
commit 112c8dadf9

View File

@ -1425,12 +1425,12 @@ static int Messenger_load_old(Messenger *m, uint8_t *data, uint32_t length)
if (length < size) if (length < size)
return -1; return -1;
if (DHT_load_old(m->dht, data, size) == -1) if (DHT_load_old(m->dht, data, size) == -1) {
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "Data file: Something wicked happened to the stored connections...\n"); fprintf(stderr, "Data file: Something wicked happened to the stored connections...\n");
#endif
/* DO go on, friends/name still might be intact */ /* DO go on, friends/name still might be intact */
#endif
}
data += size; data += size;
length -= size; length -= size;