summaryrefslogtreecommitdiff
path: root/source3/lib/interface.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-04-30 11:15:27 +0000
committerAndrew Tridgell <tridge@samba.org>2000-04-30 11:15:27 +0000
commit814f37a5e3db3bcbf6478a6c5dd11aa27d6f7c6f (patch)
treef726d8e574253ac0cee8f6aeed7567d0d30ca42b /source3/lib/interface.c
parent3727e4aaac043c42d1cdb005f99de9feaededb16 (diff)
downloadsamba-814f37a5e3db3bcbf6478a6c5dd11aa27d6f7c6f.tar.gz
samba-814f37a5e3db3bcbf6478a6c5dd11aa27d6f7c6f.tar.bz2
samba-814f37a5e3db3bcbf6478a6c5dd11aa27d6f7c6f.zip
we don't need fnmatch.c any more
(This used to be commit e23f43e7d3d2a068f527baa63a31f7fe4e60e79d)
Diffstat (limited to 'source3/lib/interface.c')
-rw-r--r--source3/lib/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c
index 9266427959..e535251756 100644
--- a/source3/lib/interface.c
+++ b/source3/lib/interface.c
@@ -109,7 +109,7 @@ static void interpret_interface(char *token)
/* first check if it is an interface name */
for (i=0;i<total_probed;i++) {
- if (fnmatch(token, probed_ifaces[i].name, 0) == 0) {
+ if (ms_fnmatch(token, probed_ifaces[i].name) == 0) {
add_interface(probed_ifaces[i].ip,
probed_ifaces[i].netmask);
added = 1;