From owner-freebsd-ports Sat Jul 31 2:20: 7 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F5DD14CF9 for ; Sat, 31 Jul 1999 02:20:04 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id CAA07810; Sat, 31 Jul 1999 02:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Sat, 31 Jul 1999 02:20:02 -0700 (PDT) Message-Id: <199907310920.CAA07810@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Subject: Re: ports/12857 ports/www/webalizer update Reply-To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/12857; it has been noted by GNATS. From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/12857 ports/www/webalizer update Date: Sat, 31 Jul 1999 11:13:49 +0200 best regards Dirk -- Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany -- Tel. +49-5606-6512 --- graphs.c.orig Tue Jun 15 06:33:40 1999 +++ graphs.c Sat Jul 31 10:43:48 1999 @@ -285,7 +285,7 @@ /* save gif image */ if ((out = fopen(fname, "wb")) != NULL) { - gdImageGif(im, out); + gdImagePng(im, out); fclose(out); } /* deallocate memory */ @@ -501,7 +501,7 @@ /* open file for writing */ if ((out = fopen(fname, "wb")) != NULL) { - gdImageGif(im, out); + gdImagePng(im, out); fclose(out); } /* deallocate memory */ @@ -614,7 +614,7 @@ /* save as gif file */ if ( (out = fopen(fname, "wb")) != NULL) { - gdImageGif(im, out); + gdImagePng(im, out); fclose(out); } /* deallocate memory */ @@ -700,7 +700,7 @@ /* save gif image */ if ((out = fopen(fname, "wb")) != NULL) { - gdImageGif(im, out); + gdImagePng(im, out); fclose(out); } /* deallocate memory */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message