View | Details | Raw Unified | Return to bug 20279
Collapse All | Expand All

(-)/usr/src/usr.bin/fetch/fetch.c.new (-1 / +1 lines)
Lines 416-422 Link Here
416
    }
416
    }
417
417
418
    /* did the transfer complete normally? */
418
    /* did the transfer complete normally? */
419
    if (us.size != -1 && count < us.size) {
419
    if ((int)us.size != -1 && count < us.size) {
420
	warnx("%s appears to be truncated: %lld/%lld bytes",
420
	warnx("%s appears to be truncated: %lld/%lld bytes",
421
	      path, count, us.size);
421
	      path, count, us.size);
422
	goto failure_keep;
422
	goto failure_keep;

Return to bug 20279