diff options
| author | Patrick McHardy <kaber@trash.net> | 2006-03-22 16:57:25 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2006-03-22 16:57:25 -0500 |
| commit | 6a534ee35cfd02f60e99d301b9ac446ea11a9cfd (patch) | |
| tree | c6bbb8b91bdadd5fb4a9e93df47a36213674b3a1 | |
| parent | 1e30a014e311e627b91489ff5ec1b54496d308af (diff) | |
[NETFILTER]: Fix undefined references to get_h225_addr
get_h225_addr is exported, but declared static, which fails when
linking statically.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/ipv4/netfilter/ip_conntrack_helper_h323.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/netfilter/ip_conntrack_helper_h323.c b/net/ipv4/netfilter/ip_conntrack_helper_h323.c index 20da6730b860..daeb1395faa4 100644 --- a/net/ipv4/netfilter/ip_conntrack_helper_h323.c +++ b/net/ipv4/netfilter/ip_conntrack_helper_h323.c | |||
| @@ -639,8 +639,8 @@ void ip_conntrack_h245_expect(struct ip_conntrack *new, | |||
| 639 | } | 639 | } |
| 640 | 640 | ||
| 641 | /****************************************************************************/ | 641 | /****************************************************************************/ |
| 642 | static int get_h225_addr(unsigned char *data, TransportAddress * addr, | 642 | int get_h225_addr(unsigned char *data, TransportAddress * addr, |
| 643 | u_int32_t * ip, u_int16_t * port) | 643 | u_int32_t * ip, u_int16_t * port) |
| 644 | { | 644 | { |
| 645 | unsigned char *p; | 645 | unsigned char *p; |
| 646 | 646 | ||
