mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-03 09:28:45 +00:00
![]() The correct cast for these is (unsigned char), because "char" could be signed and thus have some negative value. isalpha & co. expect an int arg that is positive, i.e. 0-255. So we need to cast to (unsigned char) when calling any of these. Signed-off-by: David Lamparter <equinox@opensourcerouting.org> |
||
---|---|---|
.. | ||
.gitignore | ||
common_cli.c | ||
common_cli.h | ||
test_cli.c | ||
test_cli.in | ||
test_cli.py | ||
test_cli.refout.in | ||
test_commands.c | ||
test_commands.in | ||
test_commands.py | ||
test_commands.refout |