diff options
author | Tim Prouty <tprouty@samba.org> | 2008-12-02 23:29:57 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2008-12-03 10:40:20 -0800 |
commit | 1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e (patch) | |
tree | a43eb854b68ef6d65d6120d5ec0441bc26ea9612 /lib/util | |
parent | fcbf88115c217cfe5090f8d60ab7627681c648c8 (diff) | |
download | samba-1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e.tar.gz samba-1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e.tar.bz2 samba-1eb743ab8e8b1141f99fabd3e4a46895c6dcc17e.zip |
s3: Change sockaddr util function names for consistency
Also eliminates name conflicts with OneFS system libraries
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/util_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/util_net.c b/lib/util/util_net.c index 228393a2bb..d1dadc2494 100644 --- a/lib/util/util_net.c +++ b/lib/util/util_net.c @@ -360,7 +360,7 @@ bool same_net(const struct sockaddr *ip1, * Are two sockaddr 's the same family and address ? Ignore port etc. */ -bool addr_equal(const struct sockaddr *ip1, +bool sockaddr_equal(const struct sockaddr *ip1, const struct sockaddr *ip2) { if (ip1->sa_family != ip2->sa_family) { |