diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-09-20 20:14:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-09-20 20:14:47 +0000 |
commit | 94dc1a2434fc48816bf1f3aa0e0c89db1c2f672f (patch) | |
tree | 13dbc40ee201dcdc9bfadb5e0462faf110d4b67e /inet | |
parent | 89210b4c1355ace8671bb49a8dc3e8e480f56160 (diff) | |
download | glibc-94dc1a2434fc48816bf1f3aa0e0c89db1c2f672f.tar.gz glibc-94dc1a2434fc48816bf1f3aa0e0c89db1c2f672f.tar.xz glibc-94dc1a2434fc48816bf1f3aa0e0c89db1c2f672f.zip |
Also emit linker warnings for the RFC 2292 interfaces.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/inet6_option.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/inet/inet6_option.c b/inet/inet6_option.c index cae9ae5797..b34eb22b7d 100644 --- a/inet/inet6_option.c +++ b/inet/inet6_option.c @@ -97,6 +97,8 @@ inet6_option_space (nbytes) return CMSG_SPACE (roundup (nbytes, 8)); } +link_warning (inet6_option_space, + "inet6_option_space is obsolete, use the RFC 3542 interfaces") /* RFC 2292, 6.3.2 @@ -131,6 +133,8 @@ inet6_option_init (bp, cmsgp, type) return 0; } +link_warning (inet6_option_init, + "inet6_option_init is obsolete, use the RFC 3542 interfaces") /* RFC 2292, 6.3.3 @@ -164,6 +168,8 @@ inet6_option_append (cmsg, typep, multx, plusy) return 0; } +link_warning (inet6_option_append, + "inet6_option_append is obsolete, use the RFC 3542 interfaces") /* RFC 2292, 6.3.4 @@ -225,6 +231,8 @@ inet6_option_alloc (cmsg, datalen, multx, plusy) { return option_alloc (cmsg, datalen, multx, plusy); } +link_warning (inet6_option_alloc, + "inet6_option_alloc is obsolete, use the RFC 3542 interfaces") /* RFC 2292, 6.3.5 @@ -282,6 +290,8 @@ inet6_option_next (cmsg, tptrp) /* Check the option is fully represented in the message. */ return get_opt_end (&result, result, endp); } +link_warning (inet6_option_next, + "inet6_option_next is obsolete, use the RFC 3542 interfaces") /* RFC 2292, 6.3.6 @@ -351,3 +361,5 @@ inet6_option_find (cmsg, tptrp, type) /* Success. */ return 0; } +link_warning (inet6_option_find, + "inet6_option_find is obsolete, use the RFC 3542 interfaces") |