summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper/smbw.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-08 06:21:33 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-08 06:21:33 +0000
commit91597c12fb593f49b23c7cea5b64dbb89a0428b3 (patch)
tree8f7a839029de12844d40490849bad9d2eb0447ae /source/smbwrapper/smbw.c
parent230e4eb3dd9753899564fd6ec0e0291ee00be8c4 (diff)
downloadsamba-91597c12fb593f49b23c7cea5b64dbb89a0428b3.tar.gz
samba-91597c12fb593f49b23c7cea5b64dbb89a0428b3.tar.xz
samba-91597c12fb593f49b23c7cea5b64dbb89a0428b3.zip
- fixed a bunch of warnings and minor errors
- got smbtorture to compile - removed %D from some of lukes code - Luke, what is %D? it ain't portable anyway
Diffstat (limited to 'source/smbwrapper/smbw.c')
-rw-r--r--source/smbwrapper/smbw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbwrapper/smbw.c b/source/smbwrapper/smbw.c
index 9a22854ae3c..f84623d3df0 100644
--- a/source/smbwrapper/smbw.c
+++ b/source/smbwrapper/smbw.c
@@ -398,7 +398,7 @@ struct smbw_server *smbw_server(char *server, char *share)
fstrcpy(group, server_n);
p = strchr(group,'#');
*p = 0;
- if (!find_master(group, &ip)) {
+ if (!find_master_ip(group, &ip)) {
errno = ENOENT;
return NULL;
}