| 97 |
} |
} |
| 98 |
else |
else |
| 99 |
{ |
{ |
| 100 |
sprintf (message, _("Could only read %lu of %lu bytes"), |
sprintf (message, |
| 101 |
|
ngettext ("Could only read %lu of %lu byte", |
| 102 |
|
"Could only read %lu of %lu bytes", |
| 103 |
|
bytes), |
| 104 |
(unsigned long) status, (unsigned long) bytes); |
(unsigned long) status, (unsigned long) bytes); |
| 105 |
report_difference (message); |
report_difference (message); |
| 106 |
} |
} |
| 239 |
{ |
{ |
| 240 |
char message[MESSAGE_BUFFER_SIZE]; |
char message[MESSAGE_BUFFER_SIZE]; |
| 241 |
|
|
| 242 |
sprintf (message, _("Could only read %lu of %lu bytes"), |
sprintf (message, |
| 243 |
|
ngettext ("Could only read %lu of %lu byte", |
| 244 |
|
"Could only read %lu of %lu bytes", |
| 245 |
|
chunk_size), |
| 246 |
(unsigned long) status, (unsigned long) chunk_size); |
(unsigned long) status, (unsigned long) chunk_size); |
| 247 |
report_difference (message); |
report_difference (message); |
| 248 |
} |
} |
| 274 |
{ |
{ |
| 275 |
char message[MESSAGE_BUFFER_SIZE]; |
char message[MESSAGE_BUFFER_SIZE]; |
| 276 |
|
|
| 277 |
sprintf (message, _("Could only read %lu of %lu bytes"), |
sprintf (message, |
| 278 |
|
ngettext ("Could only read %lu of %lu byte", |
| 279 |
|
"Could only read %lu of %lu bytes", |
| 280 |
|
chunk_size), |
| 281 |
(unsigned long) status, (unsigned long) chunk_size); |
(unsigned long) status, (unsigned long) chunk_size); |
| 282 |
report_difference (message); |
report_difference (message); |
| 283 |
} |
} |
| 723 |
while (status == HEADER_FAILURE); |
while (status == HEADER_FAILURE); |
| 724 |
|
|
| 725 |
ERROR ((0, 0, |
ERROR ((0, 0, |
| 726 |
_("VERIFY FAILURE: %d invalid header(s) detected"), counter)); |
ngettext ("VERIFY FAILURE: %d invalid header detected", |
| 727 |
|
"VERIFY FAILURE: %d invalid headers detected", |
| 728 |
|
counter), counter)); |
| 729 |
} |
} |
| 730 |
if (status == HEADER_ZERO_BLOCK || status == HEADER_END_OF_FILE) |
if (status == HEADER_ZERO_BLOCK || status == HEADER_END_OF_FILE) |
| 731 |
break; |
break; |