Skip to content

Commit

Permalink
sigma: return corrrect CC on line disconnect
Browse files Browse the repository at this point in the history
  • Loading branch information
kenrector authored and pkoning2 committed Jan 13, 2025
1 parent bad1e0e commit 33d6b08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sigma/sigma_coc.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,9 @@ else { /* receive */
}
if (mux_sta[ln] & MUXL_RBP) /* break pending? */
CC = CC3|CC4;
else CC = mux_ldsc[ln].rcve? CC4: CC3;
else if (mux_ldsc[ln].conn)
CC = mux_ldsc[ln].rcve? CC4: CC3;
else CC = 0;
}
return 0;
}
Expand Down

0 comments on commit 33d6b08

Please sign in to comment.