Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!mit-eddie!ll-xn!ames!ucbcad!ucbvax!ZERMATT.LCS.MIT.EDU!RWS From: RWS@ZERMATT.LCS.MIT.EDU (Robert Scheifler) Newsgroups: comp.windows.x Subject: V11R1 fix for server/dix/gc.c Message-ID: <871003143951.9.RWS@KILLINGTON.LCS.MIT.EDU> Date: Sat, 3-Oct-87 14:39:00 EDT Article-I.D.: KILLINGT.871003143951.9.RWS Posted: Sat Oct 3 14:39:00 1987 Date-Received: Wed, 7-Oct-87 02:20:58 EDT Sender: usenet@ucbvax.BERKELEY.EDU Distribution: world Organization: The ARPA Internet Lines: 39 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;