Software Package:       
	ghostscript

Release/Version:
	2.6.2 + CERT security patch to psfiles/gs_init.ps (CA-95:10)

Retrieved from:
	ftp.gnu.ai.mit.edu

Bug reports:
	This software package is maintained by the software contributor,
	not BSDI.  Please send any bug reports to both support@BSDI.COM
	and ghost@aladdin.com.

Comments:

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Modifications to this version made by BSDI:

*** gs262/gdevbmp.c	Wed May 12 17:08:18 1993
--- gdevbmp.c	Fri Oct 28 10:34:50 1994
***************
*** 1,3 ****
--- 1,5 ----
+ /*	BSDI	BSDI_CONTRIB,v 1.2 1995/11/30 23:41:02 polk Exp	*/
+ 
  /* Copyright (C) 1992, 1993 Aladdin Enterprises.  All rights reserved.
  
  This file is part of Ghostscript.
***************
*** 230,236 ****
  	/* Write the contents of the image. */
  	/* BMP files want the image in bottom-to-top order! */
  
! 	for ( y = height; y >= 0; y-- )
  	{	gdev_prn_copy_scan_lines(pdev, y, row, raster);
  		fwrite((const char *)row, bmp_raster, 1, file);
  	}
--- 232,238 ----
  	/* Write the contents of the image. */
  	/* BMP files want the image in bottom-to-top order! */
  
! 	for ( y = height-1; y >= 0; y-- )
  	{	gdev_prn_copy_scan_lines(pdev, y, row, raster);
  		fwrite((const char *)row, bmp_raster, 1, file);
  	}
*** gs262/gdevo182.c	Wed May 12 17:15:54 1993
--- gdevo182.c	Thu Nov 30 16:15:09 1995
***************
*** 1,3 ****
--- 1,5 ----
+ /*	BSDI	BSDI_CONTRIB,v 1.2 1995/11/30 23:41:02 polk Exp	*/
+ 
  /* Copyright (C) 1993 Aladdin Enterprises.  All rights reserved.
  
  This file is part of Ghostscript.
***************
*** 21,27 ****
  
  /* Contributed by Maarten Koning (smeg@bnr.ca) April 4, 1993 */
  
! #if 0
  
  I use this driver from Unix with the following aliases:
  
--- 23,29 ----
  
  /* Contributed by Maarten Koning (smeg@bnr.ca) April 4, 1993 */
  
! /*
  
  I use this driver from Unix with the following aliases:
  
***************
*** 54,60 ****
  the graphics data can't match any Okidata commands
  (This driver sets the high bit of graphics data to 1).
  
! #endif
  
  #include "gdevprn.h"
  
--- 56,62 ----
  the graphics data can't match any Okidata commands
  (This driver sets the high bit of graphics data to 1).
  
! */
  
  #include "gdevprn.h"
  
