From 5a53b379176ab48879944fa794655a1cbc840630 Mon Sep 17 00:00:00 2001 From: dillon Date: Wed, 27 Jan 1999 22:16:46 +0000 Subject: Fix if (a = b) conditional that should have been if (a == b) --- sys/netatm/atm_cm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/netatm') diff --git a/sys/netatm/atm_cm.c b/sys/netatm/atm_cm.c index 51ea35b..d2ab8b5 100644 --- a/sys/netatm/atm_cm.c +++ b/sys/netatm/atm_cm.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: atm_cm.c,v 1.3 1998/10/31 20:06:54 phk Exp $ + * @(#) $Id: atm_cm.c,v 1.4 1999/01/27 22:16:15 dillon Exp $ * */ @@ -38,7 +38,7 @@ #include #ifndef lint -__RCSID("@(#) $Id: atm_cm.c,v 1.3 1998/10/31 20:06:54 phk Exp $"); +__RCSID("@(#) $Id: atm_cm.c,v 1.4 1999/01/27 22:16:15 dillon Exp $"); #endif @@ -2189,7 +2189,7 @@ atm_cm_share_llc(ap) /* * AAL */ - if (ap->aal.type = ATM_AAL5) { + if (ap->aal.type == ATM_AAL5) { struct t_atm_aal5 *ap5, *cv5; ap5 = &ap->aal.v.aal5; -- cgit v1.1