home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume35 / mbox / part14 / rz.cdiff < prev   
Text File  |  1993-02-05  |  2KB  |  78 lines

  1. *** rz.c~    Sat Aug 10 13:39:34 1991
  2. --- rz.c    Sat Aug 10 13:13:54 1991
  3. ***************
  4. *** 1,6 ****
  5. --- 1,8 ----
  6.   #define VERSION "2.03 05-17-88"
  7.   #define PUBDIR "/usr/spool/uucppublic"
  8.   
  9. + /* Unnet == Modified for ix/MBox-Use !!! */
  10.   /*% cc -compat -M2 -Ox -K -i -DMD -DOMEN % -o rz; size rz;
  11.   <-xtx-*> cc386 -Ox -DMD -DOMEN -DSEGMENTS=8 rz.c -o $B/rz;  size $B/rz
  12.    *
  13. ***************
  14. *** 390,395 ****
  15. --- 392,399 ----
  16.   {
  17.       register c;
  18.   
  19. +     strcpy(Pathname, *argp); checkpath(Pathname);  /* Unnet */
  20.       if (Batch || argc==0) {
  21.           Crcflg=1;
  22.           if ( !Quiet)
  23. ***************
  24. *** 432,439 ****
  25.           pclose(fout);  return ERROR;
  26.       }
  27.   #endif
  28. !     if (fout)
  29. !         fclose(fout);
  30.   #ifndef vax11c
  31.       if (Restricted) {
  32.           unlink(Pathname);
  33. --- 436,445 ----
  34.           pclose(fout);  return ERROR;
  35.       }
  36.   #endif
  37. !     if (fout){
  38. !         fflush(fout); /* Unnet */
  39. !         fclose(fout);
  40. !     }
  41.   #ifndef vax11c
  42.       if (Restricted) {
  43.           unlink(Pathname);
  44. ***************
  45. *** 915,922 ****
  46.   register n;
  47.   {
  48.       register char *p;
  49. !     if (n == 0)
  50. !         return OK;
  51.   
  52.       if (Thisbinary) {
  53.           for (p=buf; --n>=0; )     
  54. --- 921,931 ----
  55.   register n;
  56.   {
  57.       register char *p;
  58. !                                                       
  59. !     if (n == 0)
  60. !         return OK;
  61. !        
  62. !     if (fout == 0) fout = fopen( Pathname, "a" );     /* Unnet */
  63.   
  64.       if (Thisbinary) {
  65.           for (p=buf; --n>=0; )     
  66. ***************
  67. *** 1436,1441 ****
  68. --- 1445,1451 ----
  69.           return OK;
  70.       }
  71.   #endif
  72. +     fflush(fout);  /* Unnet */
  73.       if (fclose(fout)==ERROR) {
  74.           fprintf(stderr, "file close ERROR\n");
  75.           return ERROR;
  76.