diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2010-12-01 05:40:45 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2010-12-01 05:40:45 +0300 |
commit | d4e123933f71773c91e2e0f3da2687a4e8715ab5 (patch) | |
tree | 21af53dc311efe2bf32baaff6a5eabc2bb895e43 /accel-pptpd/radius | |
parent | c84e577fceeccf8c7731a54f9155f8a42eb6c90b (diff) | |
download | accel-ppp-d4e123933f71773c91e2e0f3da2687a4e8715ab5.tar.gz accel-ppp-d4e123933f71773c91e2e0f3da2687a4e8715ab5.zip |
radius: fix incorrect packet identifier size
Diffstat (limited to 'accel-pptpd/radius')
-rw-r--r-- | accel-pptpd/radius/radius.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pptpd/radius/radius.h b/accel-pptpd/radius/radius.h index 95fa82b..c42989e 100644 --- a/accel-pptpd/radius/radius.h +++ b/accel-pptpd/radius/radius.h @@ -78,7 +78,7 @@ struct rad_attr_t struct rad_packet_t { int code; - int id; + uint8_t id; int len; struct list_head attrs; void *buf; |