From owner-svn-src-head@freebsd.org Fri Nov 6 12:02:25 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FBB2A27456; Fri, 6 Nov 2015 12:02:25 +0000 (UTC) (envelope-from smh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC981EE5; Fri, 6 Nov 2015 12:02:25 +0000 (UTC) (envelope-from smh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA6C2OHQ092982; Fri, 6 Nov 2015 12:02:24 GMT (envelope-from smh@FreeBSD.org) Received: (from smh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA6C2OsM092981; Fri, 6 Nov 2015 12:02:24 GMT (envelope-from smh@FreeBSD.org) Message-Id: <201511061202.tA6C2OsM092981@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: smh set sender to smh@FreeBSD.org using -f From: Steven Hartland Date: Fri, 6 Nov 2015 12:02:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r290440 - head/lib/libutil X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Nov 2015 12:02:25 -0000 Author: smh Date: Fri Nov 6 12:02:24 2015 New Revision: 290440 URL: https://svnweb.freebsd.org/changeset/base/290440 Log: Correct posix_openpt reference in pty(3) MFC after: 1 week Sponsored by: Multiplay Modified: head/lib/libutil/pty.3 Modified: head/lib/libutil/pty.3 ============================================================================== --- head/lib/libutil/pty.3 Fri Nov 6 11:29:24 2015 (r290439) +++ head/lib/libutil/pty.3 Fri Nov 6 12:02:24 2015 (r290440) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" " -.Dd December 29, 1996 +.Dd November 11, 2015 .Dt PTY 3 .Os .Sh NAME @@ -120,7 +120,7 @@ function may fail and set the global var .Dv errno for any of the errors specified for the .Xr grantpt 3 , -.Xr posix_openpt 3 , +.Xr posix_openpt 2 , .Xr ptsname 3 , and .Xr unlockpt 3