home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume13 / tipx / patch01 < prev    next >
Encoding:
Text File  |  1990-06-02  |  2.3 KB  |  73 lines

  1. Newsgroups: comp.sources.misc
  2. subject: v13i022: tipx patch 1
  3. From: wht@gatech.edu@n4hgf.UUCP (Warren Tucker)
  4. Sender: allbery@uunet.UU.NET (Brandon S. Allbery - comp.sources.misc)
  5.  
  6. Posting-number: Volume 13, Issue 22
  7. Submitted-by: wht@gatech.edu@n4hgf.UUCP (Warren Tucker)
  8. Archive-name: tipx/patch01
  9.  
  10. This patch enables the rz and ry commands to be issued without
  11. arguments.  Previously a space had to appear after rz or ry
  12. for the file transfer commands to work.  Sorry.
  13.  
  14. *** old-cmds.c    Fri Jun  1 18:21:55 1990
  15. --- cmds.c    Fri Jun  1 18:21:07 1990
  16. ***************
  17. *** 629,635
  18.           sprintf(xcmd,"tipsz -Y -k -. %d ",FD);
  19.       else if(!strncmp(buf,"sx ",3))
  20.           sprintf(xcmd,"tipsz -X -. %d ",FD);
  21. !     else if(!strncmp(buf,"rz ",3))
  22.           sprintf(xcmd,"tiprz -Z -. %d ",FD);
  23.       else if(!strncmp(buf,"ry ",3))
  24.           sprintf(xcmd,"tiprz -Y -. %d ",FD);
  25.  
  26. --- 629,635 -----
  27.           sprintf(xcmd,"tipsz -Y -k -. %d ",FD);
  28.       else if(!strncmp(buf,"sx ",3))
  29.           sprintf(xcmd,"tipsz -X -. %d ",FD);
  30. !     else if(!strncmp(buf,"rz",2))
  31.           sprintf(xcmd,"tiprz -Z -. %d ",FD);
  32.       else if(!strncmp(buf,"ry",2))
  33.           sprintf(xcmd,"tiprz -Y -. %d ",FD);
  34. ***************
  35. *** 631,637
  36.           sprintf(xcmd,"tipsz -X -. %d ",FD);
  37.       else if(!strncmp(buf,"rz ",3))
  38.           sprintf(xcmd,"tiprz -Z -. %d ",FD);
  39. !     else if(!strncmp(buf,"ry ",3))
  40.           sprintf(xcmd,"tiprz -Y -. %d ",FD);
  41.       else if(!strncmp(buf,"rx ",3))
  42.           sprintf(xcmd,"tiprz -X -. %d ",FD);
  43.  
  44. --- 631,637 -----
  45.           sprintf(xcmd,"tipsz -X -. %d ",FD);
  46.       else if(!strncmp(buf,"rz",2))
  47.           sprintf(xcmd,"tiprz -Z -. %d ",FD);
  48. !     else if(!strncmp(buf,"ry",2))
  49.           sprintf(xcmd,"tiprz -Y -. %d ",FD);
  50.       else if(!strncmp(buf,"rx ",3))
  51.           sprintf(xcmd,"tiprz -X -. %d ",FD);
  52. *** old-tip.c    Fri Jun  1 18:24:51 1990
  53. --- tip.c    Fri Jun  1 18:25:23 1990
  54. ***************
  55. *** 1,5
  56. ! char *tipx_rev = "x1.20";
  57. ! #define PATCHLEVEL 0 /* may it remain ever so */
  58.   /*
  59.    * Copyright (c) 1983 The Regents of the University of California.
  60.    * All rights reserved.
  61.  
  62. --- 1,5 -----
  63. ! char *tipx_rev = "x1.21";
  64. ! #define PATCHLEVEL 1
  65.   /*
  66.    * Copyright (c) 1983 The Regents of the University of California.
  67.    * All rights reserved.
  68.  
  69. ---------------------------------------------------------------------
  70. Warren Tucker, TuckerWare    gatech!n4hgf!wht or wht%n4hgf@gatech.edu
  71. Any perceptible delay will eventually get on your nerves. --Bob Hyers
  72.  
  73.