CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/06/26 07:14:37
Modified files:
sys/net : if_pppx.c pipex.c pipex_local.h
Log message:
'pipex_mppe' and 'pipex_session' structures have uint16_t bit fields
which represent flags. We mix unlocked access to immutable flags with
protected access to mutable ones. This could be not MP independent on
some architectures, so convert these fields to u_int `flags' variables.
ok bluhm@
