diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-11-10 17:01:39 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-11-10 17:01:39 +0100 |
commit | 39b233182c0a13200be051b993da181a1db80a87 (patch) | |
tree | 0338a431ded200b44b8a0366e1c759d851d4fa9f /util-linux | |
parent | a86e02492d7700ce8cb4108f53646dfb025c2dff (diff) | |
download | busybox-39b233182c0a13200be051b993da181a1db80a87.tar.gz |
mount: resolve hosts to IPs in nfs mounts
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 7ae1981c8..807e89747 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -1729,7 +1729,7 @@ static int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) end = strchr(mp->mnt_fsname, ':'); *end = '\0'; - lsa = xdotted2sockaddr(mp->mnt_fsname, /*port:*/ 0); + lsa = xhost2sockaddr(mp->mnt_fsname, /*port:*/ 0); *end = ':'; dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa); if (ENABLE_FEATURE_CLEAN_UP) free(lsa); |