diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-10-13 20:24:37 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:00 +0100 |
commit | b09047b78e981af8ade6a72d426bfcb0e742995b (patch) | |
tree | 2547a72c9814f190d83cb0f8ecac678976a72ff5 /source4/client/smbmount.c | |
parent | 8517878144973aa23e653bfc7aabfbaef500c7e2 (diff) | |
download | samba-b09047b78e981af8ade6a72d426bfcb0e742995b.tar.gz samba-b09047b78e981af8ade6a72d426bfcb0e742995b.tar.xz samba-b09047b78e981af8ade6a72d426bfcb0e742995b.zip |
r25624: Remove ipv4_addr hack. Only causes 4 extra includes of system/network.h because we stripped down includes.
(This used to be commit 262c1c23a61f1f4fae13e0a61179fe98b682cecf)
Diffstat (limited to 'source4/client/smbmount.c')
-rw-r--r-- | source4/client/smbmount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/client/smbmount.c b/source4/client/smbmount.c index 31e7628fcd2..8a106974c2f 100644 --- a/source4/client/smbmount.c +++ b/source4/client/smbmount.c @@ -33,7 +33,7 @@ static pstring mpoint; static pstring service; static pstring options; -static struct ipv4_addr dest_ip; +static struct in_addr dest_ip; static bool have_ip; static int smb_port = 0; static bool got_user; @@ -116,7 +116,7 @@ static struct smbcli_state *do_connection(char *the_service) struct smbcli_state *c; struct nmb_name called, calling; char *server_n; - struct ipv4_addr ip; + struct in_addr ip; pstring server; char *share; |