aboutsummaryrefslogtreecommitdiff
path: root/sys/netatm/atm_cm.c
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-01-27 22:16:46 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-01-27 22:16:46 +0000
commitbe317f36a9bf314d51d60720160fc0677390c728 (patch)
treef1496abac9cc086b9371f48dc02b34e624da9baf /sys/netatm/atm_cm.c
parent39d0485c233a98ca3ef83b757eb9948bd6c40ce4 (diff)
downloadsrc-be317f36a9bf314d51d60720160fc0677390c728.tar.gz
src-be317f36a9bf314d51d60720160fc0677390c728.zip
Fix if (a = b) conditional that should have been if (a == b)
Notes
Notes: svn path=/head/; revision=43303
Diffstat (limited to 'sys/netatm/atm_cm.c')
-rw-r--r--sys/netatm/atm_cm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netatm/atm_cm.c b/sys/netatm/atm_cm.c
index 51ea35bd8849..d2ab8b5d8ecb 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 <netatm/kern_include.h>
#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;