summaryrefslogtreecommitdiff
path: root/source3/wrepld
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2003-11-07 09:03:02 +0000
committerVolker Lendecke <vlendec@samba.org>2003-11-07 09:03:02 +0000
commitd5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3 (patch)
tree12e0941a99f4b6c49de0156a1613a22d41e2794e /source3/wrepld
parentc22afa7d97b8fe2fc00aa5da73ed1d2d8669cd1c (diff)
downloadsamba-d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3.tar.gz
samba-d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3.tar.bz2
samba-d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3.zip
Simple rename of get_socket_addr to get_peer_addr and get_socket_name to
get_peer_name. This is to get closer to the getsockname/getpeername system functions. Next step will be the %i macro for the local IP address. I still want to play %L-games in times of port 445. Volker (This used to be commit d7162122eaf5d897e5de51604e431bfbaa20e905)
Diffstat (limited to 'source3/wrepld')
-rw-r--r--source3/wrepld/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/wrepld/process.c b/source3/wrepld/process.c
index 1f96dc996c..0e9a9b3461 100644
--- a/source3/wrepld/process.c
+++ b/source3/wrepld/process.c
@@ -342,7 +342,7 @@ static void receive_version_number_map_table(GENERIC_PACKET *q, GENERIC_PACKET *
return;
}
- fstrcpy(peer,get_socket_addr(q->fd));
+ fstrcpy(peer,get_peer_addr(q->fd));
addr=*interpret_addr2(peer);
get_our_last_id(&global_wins_table[0][0]);
@@ -842,7 +842,7 @@ void construct_reply(struct wins_packet_struct *p)
fstring peer;
struct in_addr addr;
int i;
- fstrcpy(peer,get_socket_addr(p->fd));
+ fstrcpy(peer,get_peer_addr(p->fd));
addr=*interpret_addr2(peer);
for (i=1; i<partner_count; i++)