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

(-)sysinstall.new/dist.c Wed Sep 22 20:47:26 1999 (-1 / +1 lines)
Lines 717-723 Link Here
717
               if (retval != n) {
717
               if (retval != n) {
718
                   fclose(fp);
718
                   fclose(fp);
719
                   dialog_clear_norefresh();
719
                   dialog_clear_norefresh();
720
                   msgConfirm("Write failure on transfer! (wrote %d bytes of %d bytes)", retval, n);
720
                   msgConfirm("Write failure on transfer! (wrote %d bytes of %d bytes)\nMaybe one of the distribution files got damaged during transfer.", retval, n);
721
                   goto punt;
721
                   goto punt;
722
               }
722
               }
723
           }
723
           }
(-)sysinstall.new/main.c Wed Sep 22 20:34:01 1999 (+1 lines)
Lines 56-61 Link Here
56
       signal(SIGBUS, screech);
56
       signal(SIGBUS, screech);
57
       signal(SIGSEGV, screech);
57
       signal(SIGSEGV, screech);
58
    }
58
    }
59
    signal(SIGPIPE, SIG_IGN);
59
60
60
    /* We don't work too well when running as non-root anymore */
61
    /* We don't work too well when running as non-root anymore */
61
    if (geteuid() != 0) {
62
    if (geteuid() != 0) {
(-)sysinstall.new/media.c Wed Sep 22 20:47:09 1999 (-1 / +1 lines)
Lines 686-692 Link Here
686
           break;
686
           break;
687
       }
687
       }
688
       if (write(qfd[1], buf, i) != i) {
688
       if (write(qfd[1], buf, i) != i) {
689
           msgConfirm("Write error on transfer to cpio process, try of %d bytes.", i);
689
           msgConfirm("Write error on transfer to cpio process, try of %d bytes.\nMaybe one of the distribution files got damaged during transfer.", i);
690
           break;
690
           break;
691
       }
691
       }
692
       else {
692
       else {

Return to bug 13900