diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-09-24 11:06:42 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-09-24 11:06:42 +0200 |
commit | bf6d91dc4edf3d08f0de41f71503159b1713fc9a (patch) | |
tree | aaf769128412c4ad1c56f0f373b88f10e37a8ddf /lib/ip.c | |
parent | 4116db182d8d80d26902a8b33f82664bb5770066 (diff) |
Use undefined scope for undefined IPv6 addresses.
Diffstat (limited to 'lib/ip.c')
-rw-r--r-- | lib/ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,9 +27,9 @@ char * ip_scope_text(unsigned scope) { - static char *scope_table[] = { "host", "link", "site", "org", "univ" }; + static char *scope_table[] = { "host", "link", "site", "org", "univ", "undef" }; - if (scope > SCOPE_UNIVERSE) + if (scope > SCOPE_UNDEFINED) return "?"; else return scope_table[scope]; |