From owner-cvs-all@FreeBSD.ORG Mon Jun 30 15:22:12 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E302937B401; Mon, 30 Jun 2003 15:22:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D8AB43F3F; Mon, 30 Jun 2003 15:22:12 -0700 (PDT) (envelope-from iedowse@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5UMMC0U077815; Mon, 30 Jun 2003 15:22:12 -0700 (PDT) (envelope-from iedowse@repoman.freebsd.org) Received: (from iedowse@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5UMMCY4077811; Mon, 30 Jun 2003 15:22:12 -0700 (PDT) Message-Id: <200306302222.h5UMMCY4077811@repoman.freebsd.org> From: Ian Dowse Date: Mon, 30 Jun 2003 15:22:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mount.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jun 2003 22:22:13 -0000 iedowse 2003/06/30 15:22:12 PDT FreeBSD src repository Modified files: lib/libc/sys mount.2 Log: Separate the description of the flags for mount(2) and unmount(2) to clarify which system call accepts which arguments. Previously the manual page gave the impression that calling unmount() with flags of (MNT_FORCE | MNT_UPDATE | MNT_RDONLY) would downgrade a read-write mount to read-only, which is clearly untrue; to do that, these flags should be passed to mount() instead. Revision Changes Path 1.35 +16 -14 src/lib/libc/sys/mount.2