diff options
author | pirzyk <pirzyk@FreeBSD.org> | 2001-07-11 16:31:50 +0000 |
---|---|---|
committer | pirzyk <pirzyk@FreeBSD.org> | 2001-07-11 16:31:50 +0000 |
commit | 1b460ef2a33ba547a203fbec987701c5a4adaa2a (patch) | |
tree | f4c7f96b9cb3292a48dbef85fe673f7584f9cf47 /sys/netatm | |
parent | 637fad7f2d542998cff5269c64ed76c59591a131 (diff) | |
download | FreeBSD-src-1b460ef2a33ba547a203fbec987701c5a4adaa2a.zip FreeBSD-src-1b460ef2a33ba547a203fbec987701c5a4adaa2a.tar.gz |
Commited patch for uni signaling fix.
PR: kern/28748
Submitted by: Richard Hodges <rh@matriplex.com>
MFC after: 2 weeks
Diffstat (limited to 'sys/netatm')
-rw-r--r-- | sys/netatm/uni/unisig_vc_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netatm/uni/unisig_vc_state.c b/sys/netatm/uni/unisig_vc_state.c index 8097564..0c67bf6 100644 --- a/sys/netatm/uni/unisig_vc_state.c +++ b/sys/netatm/uni/unisig_vc_state.c @@ -665,9 +665,9 @@ unisig_vc_act06(usp, uvp, msg) uvp->uv_vci = vci; } else { /* - * No--VPI/VCI must have been specified earlier + * No--VCI must have been specified earlier */ - if (!uvp->uv_vpi || !uvp->uv_vci) { + if (!uvp->uv_vci) { iep = (struct ie_generic *)atm_allocate( &unisig_iepool); if (!iep) |