diff options
author | Arnaud Ebalard <arno@natisbad.org> | 2009-06-15 20:33:39 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-06-15 20:33:39 -0700 |
commit | 7ed520bd8504700cf4aaf3b06deb10575bfc546a (patch) | |
tree | 40c622caa39f7510f20fae0fbe3a8af4a12d5504 /inet | |
parent | c518f9a4b442af13bc5ac79011eb73a05585e0a9 (diff) |
Fix type of nd_opt_home_agent_info_preference.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/netinet/icmp6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inet/netinet/icmp6.h b/inet/netinet/icmp6.h index 0cb1aa6a6c..82893daa99 100644 --- a/inet/netinet/icmp6.h +++ b/inet/netinet/icmp6.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-1997,2000,2006 Free Software Foundation, Inc. +/* Copyright (C) 1991-1997,2000,2006,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -339,7 +339,7 @@ struct nd_opt_home_agent_info uint8_t nd_opt_home_agent_info_type; uint8_t nd_opt_home_agent_info_len; uint16_t nd_opt_home_agent_info_reserved; - int16_t nd_opt_home_agent_info_preference; + uint16_t nd_opt_home_agent_info_preference; uint16_t nd_opt_home_agent_info_lifetime; }; |