diff options
author | Sam Leffler <sam@FreeBSD.org> | 2005-12-21 00:19:08 +0000 |
---|---|---|
committer | Sam Leffler <sam@FreeBSD.org> | 2005-12-21 00:19:08 +0000 |
commit | af72fe981bf93f85e44f8bd06561bded743a705f (patch) | |
tree | 4a25adf474652324634583014d56add406a347ac | |
parent | 1528156d7152f1db75bfa9c248279533343eee76 (diff) |
Notes
-rw-r--r-- | sys/netatm/uni/unisig_encode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netatm/uni/unisig_encode.c b/sys/netatm/uni/unisig_encode.c index 4ecfc9c80243..666a3ec946cd 100644 --- a/sys/netatm/uni/unisig_encode.c +++ b/sys/netatm/uni/unisig_encode.c @@ -1533,7 +1533,7 @@ usf_enc_ie_ident(usf, ie, tbl) */ cp = (char *) ((intptr_t)ie + tbl[i].f_offs); if (tbl[i].len == 0) { - if ((*cp == T_NO || *cp == T_ATM_ABSENT)) + if ((*cp == T_NO || *(int8_t *)cp == T_ATM_ABSENT)) continue; } else { switch (tbl[i].f_size) { |