diff options
-rw-r--r-- | nfs/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nfs/mount.c b/nfs/mount.c index 45880871..07b19ff5 100644 --- a/nfs/mount.c +++ b/nfs/mount.c @@ -68,7 +68,7 @@ mount_root (char *name, char *host) /* Fetch the reply port and clean the RPC */ port = ntohl (*p++); - addr->sin_port = htons (port); /* note that htons and ntohl are not inverses */ + addr->sin_port = htons (port); /* note: htons and ntohl aren't inverses */ free (rpcbuf); /* Now talking to the mount program, fetch the file handle |