Date: Sat, 31 Jul 1999 02:20:02 -0700 (PDT) From: dirk.meyer@dinoex.sub.org (Dirk Meyer) To: freebsd-ports@FreeBSD.org Subject: Re: ports/12857 ports/www/webalizer update Message-ID: <199907310920.CAA07810@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199907310920.CAA07810>