[comp.windows.x] V11R1 fix for server/dix/gc.c

RWS@ZERMATT.LCS.MIT.EDU (Robert Scheifler) (10/03/87)

CopyGC in server/dix/gc.c has an "=" that should be "==".


*** /tmp/,RCSt1020758	Sat Oct  3 14:36:57 1987
--- gc.c	Sat Oct  3 14:34:39 1987
***************
*** 22,28 ****
  
  ******************************************************************/
  
! /* $Header: gc.c,v 1.95 87/09/03 15:52:13 toddb Exp $ */
  
  #include "X.h"
  #include "Xmd.h"
--- 22,28 ----
  
  ******************************************************************/
  
! /* $Header: gc.c,v 1.96 87/10/03 14:33:48 rws Exp $ */
  
  #include "X.h"
  #include "Xmd.h"
***************
*** 530,536 ****
  		}
  	    case GCStipple:
  		{
! 		    if (pgcDst->stipple = pgcSrc->stipple)
  			break;
  		    (* pgcDst->pScreen->DestroyPixmap)(pgcDst->stipple);
  		    pgcDst->stipple = pgcSrc->stipple;
--- 530,536 ----
  		}
  	    case GCStipple:
  		{
! 		    if (pgcDst->stipple == pgcSrc->stipple)
  			break;
  		    (* pgcDst->pScreen->DestroyPixmap)(pgcDst->stipple);
  		    pgcDst->stipple = pgcSrc->stipple;