Your message dated Tue, 21 Mar 2000 18:10:28 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Closing bug marked as fixed for debian-qa
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Darren Benham
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 15 Sep 1998 21:59:18 +0000
Received: (qmail 31945 invoked from network); 15 Sep 1998 21:59:17 -0000
Received: from post-10.mail.nl.demon.net (HELO post.mail.nl.demon.net) 
(194.159.73.20)
  by debian.novare.net with SMTP; 15 Sep 1998 21:59:17 -0000
Received: from [194.159.224.75] (helo=alf.toecompst.nl)
        by post.mail.nl.demon.net with smtp (Exim 2.02 #1)
        id 0zJ37y-0006YM-00; Tue, 15 Sep 1998 21:59:15 +0000
Received: from paul by alf.toecompst.nl with local (Exim 2.02 #1 (Debian))
        id 0zJ37L-0002VD-00; Tue, 15 Sep 1998 23:58:35 +0200
Message-ID: <[EMAIL PROTECTED]>
Date: Tue, 15 Sep 1998 23:58:35 +0200
From: Paul Slootman <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Bcc: [EMAIL PROTECTED]
Subject: uqwk: non-maintainer upload (alpha) diffs
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Mailer: Mutt 0.93.2

Package: uqwk
Version: 1.8-2

Please read the changelog diffs for an explanation.
Please apply these patches so that future versions will build more
easily on Alpha.


Thanks,
Paul Slootman

diff -ru old/uqwk-1.8/debian/changelog uqwk-1.8/debian/changelog
--- old/uqwk-1.8/debian/changelog       Mon Sep 14 12:56:36 1998
+++ uqwk-1.8/debian/changelog   Thu Sep 10 10:33:16 1998
@@ -1,3 +1,12 @@
+uqwk (1.8-2.1) unstable; urgency=low
+
+  * Non-maintainer (binary-only) upload for Alpha
+  * Added -Wall to CFLAGS, as recommended by policy (3.3.1)
+  * Added a number of includes for prototypes
+  * fixed obsolete use of inet_addr() which led to an always false boolean 
value
+
+ -- Paul Slootman <[EMAIL PROTECTED]>  Thu, 10 Sep 1998 10:12:37 +0200
+
 uqwk (1.8-2) unstable; urgency=low
 
   * Added mail-transport-agent to dependency list.
diff -ru old/uqwk-1.8/Makefile.nntp uqwk-1.8/Makefile.nntp
--- old/uqwk-1.8/Makefile.nntp  Mon Sep 14 12:56:36 1998
+++ uqwk-1.8/Makefile.nntp      Thu Sep 10 10:16:05 1998
@@ -3,7 +3,7 @@
 #
 #  steve belczyk  02/93
 #
-CFLAGS=-g -O2 -DSERVER
+CFLAGS=-g -O2 -Wall -DSERVER
 #CC=cc
 #
 #  Use this for SGI:
diff -ru old/uqwk-1.8/init.c uqwk-1.8/init.c
--- old/uqwk-1.8/init.c Fri Jan 21 19:55:29 1994
+++ uqwk-1.8/init.c     Mon Sep 14 12:39:29 1998
@@ -1,4 +1,5 @@
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include "uqwk.h"
 
diff -ru old/uqwk-1.8/mail.c uqwk-1.8/mail.c
--- old/uqwk-1.8/mail.c Tue Feb  1 17:08:36 1994
+++ uqwk-1.8/mail.c     Mon Sep 14 12:50:30 1998
@@ -1,4 +1,6 @@
 #include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 #include "uqwk.h"
 
 /*
diff -ru old/uqwk-1.8/misc.c uqwk-1.8/misc.c
--- old/uqwk-1.8/misc.c Tue Feb  1 17:10:41 1994
+++ uqwk-1.8/misc.c     Mon Sep 14 12:50:48 1998
@@ -1,4 +1,5 @@
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include "uqwk.h"
 
diff -ru old/uqwk-1.8/news.c uqwk-1.8/news.c
--- old/uqwk-1.8/news.c Fri Jan 21 21:30:41 1994
+++ uqwk-1.8/news.c     Mon Sep 14 12:53:29 1998
@@ -1,3 +1,5 @@
+#include <stdlib.h>
+#include <unistd.h>
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -439,7 +441,7 @@
        if (art_fd == NULL) return (0);
 
        /* Construct article's file name */ 
-       sprintf(art_file,"/tmp/rrn%ld.%ld", (long) artnum, getpid());
+       sprintf(art_file,"/tmp/rrn%ld.%ld", (long) artnum, (long)getpid());
 #else
        /* Construct article's file name */ 
        sprintf (art_file, "%s%d", news_path, artnum);
@@ -641,7 +643,7 @@
        if (!zip_flag)
        {
                offset = ftell (nws_fd);
-               fprintf (idx_fd, "N %08d %s\r\n", offset, np->name);
+               fprintf (idx_fd, "N %08ld %s\r\n", offset, np->name);
                zip_flag = 1;
        }
 
diff -ru old/uqwk-1.8/nntpclient.c uqwk-1.8/nntpclient.c
--- old/uqwk-1.8/nntpclient.c   Fri Jan 21 20:04:32 1994
+++ uqwk-1.8/nntpclient.c       Mon Sep 14 12:45:52 1998
@@ -25,6 +25,8 @@
  *
  */
 
+#include <stdlib.h>
+#include <unistd.h>
 #include <stdio.h>
 #include "nntp.h"
 
@@ -177,7 +179,7 @@
     if (artnum < 1)
        return (FILE *)NULL;
 
-    sprintf(artname,"/tmp/rrn%ld.%ld", (long) artnum, getpid());
+    sprintf(artname,"/tmp/rrn%ld.%ld", (long) artnum, (long)getpid());
     artfp = fopen(artname, "w+");      /* create the temporary article */
     if (artfp == (FILE *)NULL) {
        unlink(artname);
diff -ru old/uqwk-1.8/nntplib.c uqwk-1.8/nntplib.c
--- old/uqwk-1.8/nntplib.c      Thu Jul 29 21:18:49 1993
+++ uqwk-1.8/nntplib.c  Mon Sep 14 12:48:34 1998
@@ -31,7 +31,10 @@
  */
 
 
+#include <stdlib.h>
+#include <unistd.h>
 #include <stdio.h>
+#include <string.h>
 #include <sys/types.h>
 #include <ctype.h>
 #ifdef TLI
@@ -49,6 +52,7 @@
 #else /* !TLI */
 #include <sys/socket.h>
 #include <netinet/in.h>
+#include <arpa/inet.h>
 #ifndef EXCELAN
 # include <netdb.h>
 #endif /* !EXCELAN */
@@ -301,7 +305,6 @@
        register char **cp;
        static char *alist[1];
 #endif /* h_addr */
-       unsigned long inet_addr();
        static struct hostent def;
        static struct in_addr defaddr;
        static char namebuf[ 256 ];
@@ -312,7 +315,7 @@
        }
        /* If not a raw ip address, try nameserver */
        if (!isdigit(*machine) ||
-           (long)(defaddr.s_addr = inet_addr(machine)) == -1)
+               inet_aton(machine, &defaddr) == 0)
                hp = gethostbyname(machine);
        else {
                /* Raw ip address, fake  */
diff -ru old/uqwk-1.8/offline.c uqwk-1.8/offline.c
--- old/uqwk-1.8/offline.c      Thu Jan 20 20:29:13 1994
+++ uqwk-1.8/offline.c  Thu Sep 10 10:09:29 1998
@@ -1,4 +1,5 @@
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include "uqwk.h"
 /*
diff -ru old/uqwk-1.8/options.c uqwk-1.8/options.c
--- old/uqwk-1.8/options.c      Mon Jan 24 21:25:29 1994
+++ uqwk-1.8/options.c  Mon Sep 14 12:50:10 1998
@@ -1,4 +1,6 @@
 #include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
 #include <sys/types.h>
 #include <pwd.h>
 #include <string.h>
diff -ru old/uqwk-1.8/reply.c uqwk-1.8/reply.c
--- old/uqwk-1.8/reply.c        Fri Jan 21 20:42:42 1994
+++ uqwk-1.8/reply.c    Mon Sep 14 12:52:02 1998
@@ -1,3 +1,5 @@
+#include <stdlib.h>
+#include <unistd.h>
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
---------------------------------------
Received: (at 26751-done) by bugs.debian.org; 21 Mar 2000 17:10:58 +0000
Received: (qmail 30254 invoked from network); 21 Mar 2000 17:10:41 -0000
Received: from i511.resi.insa-lyon.fr (HELO k6.resI.insa-lyon.fr) 
(134.214.164.9)
  by master.debian.org with SMTP; 21 Mar 2000 17:10:41 -0000
Received: by k6.resI.insa-lyon.fr (Postfix, from userid 1001)
        id 734074045; Tue, 21 Mar 2000 18:10:28 +0100 (CET)
Message-ID: <[EMAIL PROTECTED]>
Date: Tue, 21 Mar 2000 18:10:28 +0100
From: Raphael Hertzog <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED]
Subject: Closing bug marked as fixed for debian-qa
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-15
Content-Transfer-Encoding: 8bit
X-Mailer: Mutt 0.93i

I'm closing all those bugs since they are marked as fixed and the
maintainer responsible is debian-qa ...

Cheers,
-- 
Raphaƫl Hertzog >> 0C4CABF1 >> http://tux.u-strasbg.fr/~raphael/
<pub> CD Debian : http://tux.u-strasbg.fr/~raphael/debian/#cd
      Formations Linux et logiciels libres : http://www.logidee.com </pub>

Reply via email to