diff options
author | Warner Losh <imp@FreeBSD.org> | 1997-12-26 23:28:17 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 1997-12-26 23:28:17 +0000 |
commit | b1a3bc5ea0e324e7156d934faed65515c53a03d3 (patch) | |
tree | 5c555afc012476d78a7a498d74e3fbdac19c5e62 /sbin/umount | |
parent | 43b651a5e7b1857261208d13656224cbc6561bb2 (diff) | |
download | src-test2-b1a3bc5ea0e324e7156d934faed65515c53a03d3.tar.gz src-test2-b1a3bc5ea0e324e7156d934faed65515c53a03d3.zip |
Notes
Diffstat (limited to 'sbin/umount')
-rw-r--r-- | sbin/umount/umount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c index 9b4c472a772e..fe42c19cd3bd 100644 --- a/sbin/umount/umount.c +++ b/sbin/umount/umount.c @@ -280,7 +280,8 @@ umountfs(name, typelist) memset(&saddr, 0, sizeof(saddr)); saddr.sin_family = AF_INET; saddr.sin_port = 0; - memmove(&saddr.sin_addr, hp->h_addr, MIN(hp->h_length, sizeof(saddr.sin_addr))); + memmove(&saddr.sin_addr, hp->h_addr, + MIN(hp->h_length, sizeof(saddr.sin_addr))); pertry.tv_sec = 3; pertry.tv_usec = 0; so = RPC_ANYSOCK; |