home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume37 / uqwk / patch03 < prev    next >
Encoding:
Text File  |  1993-04-27  |  1.5 KB  |  64 lines

  1. Newsgroups: comp.sources.misc
  2. From: seb3@gte.com (Steve Belczyk)
  3. Subject: v37i031:  uqwk - a QWK "door" for Unix, Patch03
  4. Message-ID: <1993Apr28.035155.14299@sparky.imd.sterling.com>
  5. X-Md4-Signature: 8dffe99dbd2bc8f3fa4895f980e85e37
  6. Date: Wed, 28 Apr 1993 03:51:55 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: seb3@gte.com (Steve Belczyk)
  10. Posting-number: Volume 37, Issue 31
  11. Archive-name: uqwk/patch03
  12. Environment: UNIX
  13. Patch-To: uqwk: Volume 36, Issue 8
  14.  
  15. This patch updates uqwk 1.2 to uqwk 1.3.  This is a small patch, but it
  16. fixes a big problem which caused articles to be posted to the wrong
  17. newsgroup.  (And we all know how painful that can be.)  Many thanks to
  18. Debby Keen for finding this.
  19.  
  20. cd into the uqwk source directory and "patch -p1 < this-file"
  21.  
  22. diff -c uqwk1.2/news.c uqwk1.3/news.c
  23. *** uqwk1.2/news.c    Mon Mar 22 13:59:36 1993
  24. --- uqwk1.3/news.c    Fri Mar 26 09:54:43 1993
  25. ***************
  26. *** 109,115 ****
  27.       while (np != NULL)
  28.       {
  29.           np->conf = c;
  30. !         c++;
  31.           np = np->next;
  32.       }
  33.   
  34. --- 109,115 ----
  35.       while (np != NULL)
  36.       {
  37.           np->conf = c;
  38. !         if (np->subscribed) c++;
  39.           np = np->next;
  40.       }
  41.   
  42. diff -c uqwk1.2/uqwk.h uqwk1.3/uqwk.h
  43. *** uqwk1.2/uqwk.h    Mon Mar 22 13:53:54 1993
  44. --- uqwk1.3/uqwk.h    Fri Mar 26 09:53:33 1993
  45. ***************
  46. *** 2,8 ****
  47.    *  Header for uqwk
  48.    */
  49.   
  50. ! #define UQWK_VERSION    "1.2"
  51.   
  52.   #ifdef ALLOCATE
  53.   #define EXTERN
  54. --- 2,8 ----
  55.    *  Header for uqwk
  56.    */
  57.   
  58. ! #define UQWK_VERSION    "1.3"
  59.   
  60.   #ifdef ALLOCATE
  61.   #define EXTERN
  62.  
  63. exit 0 # Just in case...
  64.