From owner-svn-src-stable-8@FreeBSD.ORG Sun Mar 10 00:36:29 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 96738CB0; Sun, 10 Mar 2013 00:36:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 704FA2A9; Sun, 10 Mar 2013 00:36:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2A0aTWM074439; Sun, 10 Mar 2013 00:36:29 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2A0aTGw074438; Sun, 10 Mar 2013 00:36:29 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201303100036.r2A0aTGw074438@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 10 Mar 2013 00:36:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248120 - stable/8/lib/libutil X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Mar 2013 00:36:29 -0000 Author: bapt Date: Sun Mar 10 00:36:28 2013 New Revision: 248120 URL: http://svnweb.freebsd.org/changeset/base/248120 Log: MFC r237268 Revert user comparison back to user names as some user can share uids (root/toor for example) get the username information from old_pw structures to still allow renaming of a user. Approved by: re (jpaetzel) Modified: stable/8/lib/libutil/pw_util.c Directory Properties: stable/8/lib/libutil/ (props changed) Modified: stable/8/lib/libutil/pw_util.c ============================================================================== --- stable/8/lib/libutil/pw_util.c Sat Mar 9 23:55:23 2013 (r248119) +++ stable/8/lib/libutil/pw_util.c Sun Mar 10 00:36:28 2013 (r248120) @@ -436,14 +436,21 @@ pw_copy(int ffd, int tfd, const struct p size_t len; int eof, readlen; - spw = pw; + if (old_pw == NULL && pw == NULL) + return (-1); + + spw = old_pw; + /* deleting a user */ if (pw == NULL) { line = NULL; - if (old_pw == NULL) + } else { + if ((line = pw_make(pw)) == NULL) return (-1); - spw = old_pw; - } else if ((line = pw_make(pw)) == NULL) - return (-1); + } + + /* adding a user */ + if (spw == NULL) + spw = pw; eof = 0; len = 0; @@ -510,7 +517,7 @@ pw_copy(int ffd, int tfd, const struct p */ *q = t; - if (fpw == NULL || fpw->pw_uid != spw->pw_uid) { + if (fpw == NULL || strcmp(fpw->pw_name, spw->pw_name) != 0) { /* nope */ if (fpw != NULL) free(fpw); From owner-svn-src-stable-8@FreeBSD.ORG Mon Mar 11 07:10:17 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2E5BA815; Mon, 11 Mar 2013 07:10:17 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1ED939B5; Mon, 11 Mar 2013 07:10:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2B7AGM9031859; Mon, 11 Mar 2013 07:10:16 GMT (envelope-from jpaetzel@svn.freebsd.org) Received: (from jpaetzel@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2B7AGFg031858; Mon, 11 Mar 2013 07:10:16 GMT (envelope-from jpaetzel@svn.freebsd.org) Message-Id: <201303110710.r2B7AGFg031858@svn.freebsd.org> From: Josh Paetzel Date: Mon, 11 Mar 2013 07:10:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248147 - stable/8/usr.sbin/pkg_install/add X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 07:10:17 -0000 Author: jpaetzel Date: Mon Mar 11 07:10:15 2013 New Revision: 248147 URL: http://svnweb.freebsd.org/changeset/base/248147 Log: Add the packages directory that will be used for the upcoming 8.4 release Approved by: re (implicit) Modified: stable/8/usr.sbin/pkg_install/add/main.c Modified: stable/8/usr.sbin/pkg_install/add/main.c ============================================================================== --- stable/8/usr.sbin/pkg_install/add/main.c Mon Mar 11 06:54:58 2013 (r248146) +++ stable/8/usr.sbin/pkg_install/add/main.c Mon Mar 11 07:10:15 2013 (r248147) @@ -88,6 +88,7 @@ struct { { 801000, 801499, "/packages-8.1-release" }, { 802000, 802499, "/packages-8.2-release" }, { 803000, 803499, "/packages-8.3-release" }, + { 804000, 804499, "/packages-8.4-release" }, { 900000, 900499, "/packages-9.0-release" }, { 901000, 901499, "/packages-9.1-release" }, { 300000, 399000, "/packages-3-stable" }, From owner-svn-src-stable-8@FreeBSD.ORG Mon Mar 11 08:21:44 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7C4D6996; Mon, 11 Mar 2013 08:21:44 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 56363D48; Mon, 11 Mar 2013 08:21:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2B8LiZI053401; Mon, 11 Mar 2013 08:21:44 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2B8LiA6053400; Mon, 11 Mar 2013 08:21:44 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201303110821.r2B8LiA6053400@svn.freebsd.org> From: Lawrence Stewart Date: Mon, 11 Mar 2013 08:21:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248150 - stable/8/sys/netinet X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 08:21:44 -0000 Author: lstewart Date: Mon Mar 11 08:21:43 2013 New Revision: 248150 URL: http://svnweb.freebsd.org/changeset/base/248150 Log: MFC r247906: The hashmask returned by hashinit() is a valid index in the returned hash array. Fix a siftr(4) potential memory leak and INVARIANTS triggered kernel panic in hashdestroy() by ensuring the last array index in the flow counter hash table is flushed of entries. Approved by: re (kib) Modified: stable/8/sys/netinet/siftr.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/netinet/ (props changed) Modified: stable/8/sys/netinet/siftr.c ============================================================================== --- stable/8/sys/netinet/siftr.c Mon Mar 11 07:55:49 2013 (r248149) +++ stable/8/sys/netinet/siftr.c Mon Mar 11 08:21:43 2013 (r248150) @@ -1319,7 +1319,7 @@ siftr_manage_ops(uint8_t action) * flow seen and freeing any malloc'd memory. * The hash consists of an array of LISTs (man 3 queue). */ - for (i = 0; i < siftr_hashmask; i++) { + for (i = 0; i <= siftr_hashmask; i++) { LIST_FOREACH_SAFE(counter, counter_hash + i, nodes, tmp_counter) { key = counter->key; From owner-svn-src-stable-8@FreeBSD.ORG Mon Mar 11 12:58:56 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8158074D; Mon, 11 Mar 2013 12:58:56 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from svr06-mx.btshosting.co.uk (unknown [IPv6:2a01:4f8:121:2403:2::]) by mx1.freebsd.org (Postfix) with ESMTP id 405EBF8F; Mon, 11 Mar 2013 12:58:56 +0000 (UTC) Received: from [192.168.1.65] (5e0ec7ef.bb.sky.com [94.14.199.239]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by svr06-mx.btshosting.co.uk (Postfix) with ESMTPSA id 0CF8E4A9FF; Mon, 11 Mar 2013 12:58:47 +0000 (UTC) Message-ID: <513DD4FC.80203@FreeBSD.org> Date: Mon, 11 Mar 2013 12:58:36 +0000 From: Jase Thew Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130215 Thunderbird/17.0.3 MIME-Version: 1.0 To: Baptiste Daroussin Subject: Re: svn commit: r248120 - stable/8/lib/libutil References: <201303100036.r2A0aTGw074438@svn.freebsd.org> In-Reply-To: <201303100036.r2A0aTGw074438@svn.freebsd.org> X-Enigmail-Version: 1.5.1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 12:58:56 -0000 On 10/03/2013 00:36, Baptiste Daroussin wrote: > Author: bapt > Date: Sun Mar 10 00:36:28 2013 > New Revision: 248120 > URL: http://svnweb.freebsd.org/changeset/base/248120 > > Log: > MFC r237268 > > Revert user comparison back to user names as some user can share uids > (root/toor for example) > > get the username information from old_pw structures to still allow renaming > of a user. > > Approved by: re (jpaetzel) > Thanks! Jase. -- Jase Thew jase@FreeBSD.org FreeBSD Ports Committer From owner-svn-src-stable-8@FreeBSD.ORG Mon Mar 11 18:01:56 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A015CA39; Mon, 11 Mar 2013 18:01:56 +0000 (UTC) (envelope-from tuexen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 79C423F8; Mon, 11 Mar 2013 18:01:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2BI1uTI035307; Mon, 11 Mar 2013 18:01:56 GMT (envelope-from tuexen@svn.freebsd.org) Received: (from tuexen@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2BI1uLw035306; Mon, 11 Mar 2013 18:01:56 GMT (envelope-from tuexen@svn.freebsd.org) Message-Id: <201303111801.r2BI1uLw035306@svn.freebsd.org> From: Michael Tuexen Date: Mon, 11 Mar 2013 18:01:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248173 - stable/8/sys/netinet X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Mar 2013 18:01:56 -0000 Author: tuexen Date: Mon Mar 11 18:01:55 2013 New Revision: 248173 URL: http://svnweb.freebsd.org/changeset/base/248173 Log: Don't use SCTP checksum offloading for SCTP/IPv6. At least the loopback interface in stable/8 doesn't support it. Please note that this is a direct commit! Approved by: re@ Modified: stable/8/sys/netinet/sctp_output.c Modified: stable/8/sys/netinet/sctp_output.c ============================================================================== --- stable/8/sys/netinet/sctp_output.c Mon Mar 11 17:43:55 2013 (r248172) +++ stable/8/sys/netinet/sctp_output.c Mon Mar 11 18:01:55 2013 (r248173) @@ -4447,9 +4447,8 @@ sctp_lowlevel_chunk_output(struct sctp_i #if defined(SCTP_WITH_NO_CSUM) SCTP_STAT_INCR(sctps_sendnocrc); #else - m->m_pkthdr.csum_flags = CSUM_SCTP; - m->m_pkthdr.csum_data = 0; - SCTP_STAT_INCR(sctps_sendhwcrc); + sctphdr->checksum = sctp_calculate_cksum(m, sizeof(struct ip6_hdr)); + SCTP_STAT_INCR(sctps_sendswcrc); #endif } /* send it out. table id is taken from stcb */ @@ -11023,9 +11022,8 @@ sctp_send_resp_msg(struct sockaddr *src, #if defined(SCTP_WITH_NO_CSUM) SCTP_STAT_INCR(sctps_sendnocrc); #else - mout->m_pkthdr.csum_flags = CSUM_SCTP; - mout->m_pkthdr.csum_data = 0; - SCTP_STAT_INCR(sctps_sendhwcrc); + shout->checksum = sctp_calculate_cksum(mout, sizeof(struct ip6_hdr)); + SCTP_STAT_INCR(sctps_sendswcrc); #endif } #ifdef SCTP_PACKET_LOGGING From owner-svn-src-stable-8@FreeBSD.ORG Tue Mar 12 18:57:12 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BDF3CF8B; Tue, 12 Mar 2013 18:57:12 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id AE8851C9; Tue, 12 Mar 2013 18:57:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2CIvCce091954; Tue, 12 Mar 2013 18:57:12 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2CIvCGb091953; Tue, 12 Mar 2013 18:57:12 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201303121857.r2CIvCGb091953@svn.freebsd.org> From: Xin LI Date: Tue, 12 Mar 2013 18:57:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248213 - stable/8/sys/conf X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Mar 2013 18:57:12 -0000 Author: delphij Date: Tue Mar 12 18:57:12 2013 New Revision: 248213 URL: http://svnweb.freebsd.org/changeset/base/248213 Log: Identify as 8.4-PRERELEASE. Approved by: re (kib) Modified: stable/8/sys/conf/newvers.sh Modified: stable/8/sys/conf/newvers.sh ============================================================================== --- stable/8/sys/conf/newvers.sh Tue Mar 12 17:23:23 2013 (r248212) +++ stable/8/sys/conf/newvers.sh Tue Mar 12 18:57:12 2013 (r248213) @@ -31,8 +31,8 @@ # $FreeBSD$ TYPE="FreeBSD" -REVISION="8.3" -BRANCH="STABLE" +REVISION="8.4" +BRANCH="PRERELEASE" if [ "X${BRANCH_OVERRIDE}" != "X" ]; then BRANCH=${BRANCH_OVERRIDE} fi From owner-svn-src-stable-8@FreeBSD.ORG Sat Mar 16 01:17:23 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 17680A1B; Sat, 16 Mar 2013 01:17:23 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 06AED92D; Sat, 16 Mar 2013 01:17:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2G1HNi4045258; Sat, 16 Mar 2013 01:17:23 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2G1GwcB045076; Sat, 16 Mar 2013 01:16:58 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201303160116.r2G1GwcB045076@svn.freebsd.org> From: Xin LI Date: Sat, 16 Mar 2013 01:16:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248360 - in stable/8/secure: lib/libcrypto/man lib/libssl/man usr.bin/openssl/man X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 01:17:23 -0000 Author: delphij Date: Sat Mar 16 01:16:57 2013 New Revision: 248360 URL: http://svnweb.freebsd.org/changeset/base/248360 Log: Diff reduction against stable/9: this is a pure mechanical comment change that eliminates the unwanted diff caused by different Pod::Simple version and have no runtime impact. We do this in the hope of minimizing variants of patches that would need to be published, should an update is required during the remaining lifetime of the stable/8 branch. This is a direct commit to the stable/8 branch. Approved by: re (marius) Modified: stable/8/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_length.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_new.3 stable/8/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 stable/8/secure/lib/libcrypto/man/ASN1_generate_nconf.3 stable/8/secure/lib/libcrypto/man/BIO_ctrl.3 stable/8/secure/lib/libcrypto/man/BIO_f_base64.3 stable/8/secure/lib/libcrypto/man/BIO_f_buffer.3 stable/8/secure/lib/libcrypto/man/BIO_f_cipher.3 stable/8/secure/lib/libcrypto/man/BIO_f_md.3 stable/8/secure/lib/libcrypto/man/BIO_f_null.3 stable/8/secure/lib/libcrypto/man/BIO_f_ssl.3 stable/8/secure/lib/libcrypto/man/BIO_find_type.3 stable/8/secure/lib/libcrypto/man/BIO_new.3 stable/8/secure/lib/libcrypto/man/BIO_push.3 stable/8/secure/lib/libcrypto/man/BIO_read.3 stable/8/secure/lib/libcrypto/man/BIO_s_accept.3 stable/8/secure/lib/libcrypto/man/BIO_s_bio.3 stable/8/secure/lib/libcrypto/man/BIO_s_connect.3 stable/8/secure/lib/libcrypto/man/BIO_s_fd.3 stable/8/secure/lib/libcrypto/man/BIO_s_file.3 stable/8/secure/lib/libcrypto/man/BIO_s_mem.3 stable/8/secure/lib/libcrypto/man/BIO_s_null.3 stable/8/secure/lib/libcrypto/man/BIO_s_socket.3 stable/8/secure/lib/libcrypto/man/BIO_set_callback.3 stable/8/secure/lib/libcrypto/man/BIO_should_retry.3 stable/8/secure/lib/libcrypto/man/BN_BLINDING_new.3 stable/8/secure/lib/libcrypto/man/BN_CTX_new.3 stable/8/secure/lib/libcrypto/man/BN_CTX_start.3 stable/8/secure/lib/libcrypto/man/BN_add.3 stable/8/secure/lib/libcrypto/man/BN_add_word.3 stable/8/secure/lib/libcrypto/man/BN_bn2bin.3 stable/8/secure/lib/libcrypto/man/BN_cmp.3 stable/8/secure/lib/libcrypto/man/BN_copy.3 stable/8/secure/lib/libcrypto/man/BN_generate_prime.3 stable/8/secure/lib/libcrypto/man/BN_mod_inverse.3 stable/8/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 stable/8/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 stable/8/secure/lib/libcrypto/man/BN_new.3 stable/8/secure/lib/libcrypto/man/BN_num_bytes.3 stable/8/secure/lib/libcrypto/man/BN_rand.3 stable/8/secure/lib/libcrypto/man/BN_set_bit.3 stable/8/secure/lib/libcrypto/man/BN_swap.3 stable/8/secure/lib/libcrypto/man/BN_zero.3 stable/8/secure/lib/libcrypto/man/CONF_modules_free.3 stable/8/secure/lib/libcrypto/man/CONF_modules_load_file.3 stable/8/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 stable/8/secure/lib/libcrypto/man/DH_generate_key.3 stable/8/secure/lib/libcrypto/man/DH_generate_parameters.3 stable/8/secure/lib/libcrypto/man/DH_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/DH_new.3 stable/8/secure/lib/libcrypto/man/DH_set_method.3 stable/8/secure/lib/libcrypto/man/DH_size.3 stable/8/secure/lib/libcrypto/man/DSA_SIG_new.3 stable/8/secure/lib/libcrypto/man/DSA_do_sign.3 stable/8/secure/lib/libcrypto/man/DSA_dup_DH.3 stable/8/secure/lib/libcrypto/man/DSA_generate_key.3 stable/8/secure/lib/libcrypto/man/DSA_generate_parameters.3 stable/8/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/DSA_new.3 stable/8/secure/lib/libcrypto/man/DSA_set_method.3 stable/8/secure/lib/libcrypto/man/DSA_sign.3 stable/8/secure/lib/libcrypto/man/DSA_size.3 stable/8/secure/lib/libcrypto/man/ERR_GET_LIB.3 stable/8/secure/lib/libcrypto/man/ERR_clear_error.3 stable/8/secure/lib/libcrypto/man/ERR_error_string.3 stable/8/secure/lib/libcrypto/man/ERR_get_error.3 stable/8/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 stable/8/secure/lib/libcrypto/man/ERR_load_strings.3 stable/8/secure/lib/libcrypto/man/ERR_print_errors.3 stable/8/secure/lib/libcrypto/man/ERR_put_error.3 stable/8/secure/lib/libcrypto/man/ERR_remove_state.3 stable/8/secure/lib/libcrypto/man/ERR_set_mark.3 stable/8/secure/lib/libcrypto/man/EVP_BytesToKey.3 stable/8/secure/lib/libcrypto/man/EVP_DigestInit.3 stable/8/secure/lib/libcrypto/man/EVP_EncryptInit.3 stable/8/secure/lib/libcrypto/man/EVP_OpenInit.3 stable/8/secure/lib/libcrypto/man/EVP_PKEY_new.3 stable/8/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 stable/8/secure/lib/libcrypto/man/EVP_SealInit.3 stable/8/secure/lib/libcrypto/man/EVP_SignInit.3 stable/8/secure/lib/libcrypto/man/EVP_VerifyInit.3 stable/8/secure/lib/libcrypto/man/OBJ_nid2obj.3 stable/8/secure/lib/libcrypto/man/OPENSSL_Applink.3 stable/8/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 stable/8/secure/lib/libcrypto/man/OPENSSL_config.3 stable/8/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 stable/8/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 stable/8/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 stable/8/secure/lib/libcrypto/man/PKCS12_create.3 stable/8/secure/lib/libcrypto/man/PKCS12_parse.3 stable/8/secure/lib/libcrypto/man/PKCS7_decrypt.3 stable/8/secure/lib/libcrypto/man/PKCS7_encrypt.3 stable/8/secure/lib/libcrypto/man/PKCS7_sign.3 stable/8/secure/lib/libcrypto/man/PKCS7_verify.3 stable/8/secure/lib/libcrypto/man/RAND_add.3 stable/8/secure/lib/libcrypto/man/RAND_bytes.3 stable/8/secure/lib/libcrypto/man/RAND_cleanup.3 stable/8/secure/lib/libcrypto/man/RAND_egd.3 stable/8/secure/lib/libcrypto/man/RAND_load_file.3 stable/8/secure/lib/libcrypto/man/RAND_set_rand_method.3 stable/8/secure/lib/libcrypto/man/RSA_blinding_on.3 stable/8/secure/lib/libcrypto/man/RSA_check_key.3 stable/8/secure/lib/libcrypto/man/RSA_generate_key.3 stable/8/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 stable/8/secure/lib/libcrypto/man/RSA_new.3 stable/8/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 stable/8/secure/lib/libcrypto/man/RSA_print.3 stable/8/secure/lib/libcrypto/man/RSA_private_encrypt.3 stable/8/secure/lib/libcrypto/man/RSA_public_encrypt.3 stable/8/secure/lib/libcrypto/man/RSA_set_method.3 stable/8/secure/lib/libcrypto/man/RSA_sign.3 stable/8/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 stable/8/secure/lib/libcrypto/man/RSA_size.3 stable/8/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 stable/8/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 stable/8/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 stable/8/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 stable/8/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 stable/8/secure/lib/libcrypto/man/X509_NAME_print_ex.3 stable/8/secure/lib/libcrypto/man/X509_new.3 stable/8/secure/lib/libcrypto/man/bio.3 stable/8/secure/lib/libcrypto/man/blowfish.3 stable/8/secure/lib/libcrypto/man/bn.3 stable/8/secure/lib/libcrypto/man/bn_internal.3 stable/8/secure/lib/libcrypto/man/buffer.3 stable/8/secure/lib/libcrypto/man/crypto.3 stable/8/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 stable/8/secure/lib/libcrypto/man/d2i_DHparams.3 stable/8/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 stable/8/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 stable/8/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 stable/8/secure/lib/libcrypto/man/d2i_X509.3 stable/8/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 stable/8/secure/lib/libcrypto/man/d2i_X509_CRL.3 stable/8/secure/lib/libcrypto/man/d2i_X509_NAME.3 stable/8/secure/lib/libcrypto/man/d2i_X509_REQ.3 stable/8/secure/lib/libcrypto/man/d2i_X509_SIG.3 stable/8/secure/lib/libcrypto/man/des.3 stable/8/secure/lib/libcrypto/man/dh.3 stable/8/secure/lib/libcrypto/man/dsa.3 stable/8/secure/lib/libcrypto/man/ecdsa.3 stable/8/secure/lib/libcrypto/man/engine.3 stable/8/secure/lib/libcrypto/man/err.3 stable/8/secure/lib/libcrypto/man/evp.3 stable/8/secure/lib/libcrypto/man/hmac.3 stable/8/secure/lib/libcrypto/man/lh_stats.3 stable/8/secure/lib/libcrypto/man/lhash.3 stable/8/secure/lib/libcrypto/man/md5.3 stable/8/secure/lib/libcrypto/man/mdc2.3 stable/8/secure/lib/libcrypto/man/pem.3 stable/8/secure/lib/libcrypto/man/rand.3 stable/8/secure/lib/libcrypto/man/rc4.3 stable/8/secure/lib/libcrypto/man/ripemd.3 stable/8/secure/lib/libcrypto/man/rsa.3 stable/8/secure/lib/libcrypto/man/sha.3 stable/8/secure/lib/libcrypto/man/threads.3 stable/8/secure/lib/libcrypto/man/ui.3 stable/8/secure/lib/libcrypto/man/ui_compat.3 stable/8/secure/lib/libcrypto/man/x509.3 stable/8/secure/lib/libssl/man/SSL_CIPHER_get_name.3 stable/8/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 stable/8/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 stable/8/secure/lib/libssl/man/SSL_CTX_add_session.3 stable/8/secure/lib/libssl/man/SSL_CTX_ctrl.3 stable/8/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 stable/8/secure/lib/libssl/man/SSL_CTX_free.3 stable/8/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 stable/8/secure/lib/libssl/man/SSL_CTX_new.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_number.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 stable/8/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_sessions.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_options.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_timeout.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 stable/8/secure/lib/libssl/man/SSL_CTX_set_verify.3 stable/8/secure/lib/libssl/man/SSL_CTX_use_certificate.3 stable/8/secure/lib/libssl/man/SSL_SESSION_free.3 stable/8/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_SESSION_get_time.3 stable/8/secure/lib/libssl/man/SSL_accept.3 stable/8/secure/lib/libssl/man/SSL_alert_type_string.3 stable/8/secure/lib/libssl/man/SSL_clear.3 stable/8/secure/lib/libssl/man/SSL_connect.3 stable/8/secure/lib/libssl/man/SSL_do_handshake.3 stable/8/secure/lib/libssl/man/SSL_free.3 stable/8/secure/lib/libssl/man/SSL_get_SSL_CTX.3 stable/8/secure/lib/libssl/man/SSL_get_ciphers.3 stable/8/secure/lib/libssl/man/SSL_get_client_CA_list.3 stable/8/secure/lib/libssl/man/SSL_get_current_cipher.3 stable/8/secure/lib/libssl/man/SSL_get_default_timeout.3 stable/8/secure/lib/libssl/man/SSL_get_error.3 stable/8/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 stable/8/secure/lib/libssl/man/SSL_get_ex_new_index.3 stable/8/secure/lib/libssl/man/SSL_get_fd.3 stable/8/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 stable/8/secure/lib/libssl/man/SSL_get_peer_certificate.3 stable/8/secure/lib/libssl/man/SSL_get_rbio.3 stable/8/secure/lib/libssl/man/SSL_get_session.3 stable/8/secure/lib/libssl/man/SSL_get_verify_result.3 stable/8/secure/lib/libssl/man/SSL_get_version.3 stable/8/secure/lib/libssl/man/SSL_library_init.3 stable/8/secure/lib/libssl/man/SSL_load_client_CA_file.3 stable/8/secure/lib/libssl/man/SSL_new.3 stable/8/secure/lib/libssl/man/SSL_pending.3 stable/8/secure/lib/libssl/man/SSL_read.3 stable/8/secure/lib/libssl/man/SSL_rstate_string.3 stable/8/secure/lib/libssl/man/SSL_session_reused.3 stable/8/secure/lib/libssl/man/SSL_set_bio.3 stable/8/secure/lib/libssl/man/SSL_set_connect_state.3 stable/8/secure/lib/libssl/man/SSL_set_fd.3 stable/8/secure/lib/libssl/man/SSL_set_session.3 stable/8/secure/lib/libssl/man/SSL_set_shutdown.3 stable/8/secure/lib/libssl/man/SSL_set_verify_result.3 stable/8/secure/lib/libssl/man/SSL_shutdown.3 stable/8/secure/lib/libssl/man/SSL_state_string.3 stable/8/secure/lib/libssl/man/SSL_want.3 stable/8/secure/lib/libssl/man/SSL_write.3 stable/8/secure/lib/libssl/man/d2i_SSL_SESSION.3 stable/8/secure/lib/libssl/man/ssl.3 stable/8/secure/usr.bin/openssl/man/CA.pl.1 stable/8/secure/usr.bin/openssl/man/asn1parse.1 stable/8/secure/usr.bin/openssl/man/ca.1 stable/8/secure/usr.bin/openssl/man/ciphers.1 stable/8/secure/usr.bin/openssl/man/crl.1 stable/8/secure/usr.bin/openssl/man/crl2pkcs7.1 stable/8/secure/usr.bin/openssl/man/dgst.1 stable/8/secure/usr.bin/openssl/man/dhparam.1 stable/8/secure/usr.bin/openssl/man/dsa.1 stable/8/secure/usr.bin/openssl/man/dsaparam.1 stable/8/secure/usr.bin/openssl/man/ec.1 stable/8/secure/usr.bin/openssl/man/ecparam.1 stable/8/secure/usr.bin/openssl/man/enc.1 stable/8/secure/usr.bin/openssl/man/errstr.1 stable/8/secure/usr.bin/openssl/man/gendsa.1 stable/8/secure/usr.bin/openssl/man/genrsa.1 stable/8/secure/usr.bin/openssl/man/nseq.1 stable/8/secure/usr.bin/openssl/man/ocsp.1 stable/8/secure/usr.bin/openssl/man/openssl.1 stable/8/secure/usr.bin/openssl/man/passwd.1 stable/8/secure/usr.bin/openssl/man/pkcs12.1 stable/8/secure/usr.bin/openssl/man/pkcs7.1 stable/8/secure/usr.bin/openssl/man/pkcs8.1 stable/8/secure/usr.bin/openssl/man/rand.1 stable/8/secure/usr.bin/openssl/man/req.1 stable/8/secure/usr.bin/openssl/man/rsa.1 stable/8/secure/usr.bin/openssl/man/rsautl.1 stable/8/secure/usr.bin/openssl/man/s_client.1 stable/8/secure/usr.bin/openssl/man/s_server.1 stable/8/secure/usr.bin/openssl/man/s_time.1 stable/8/secure/usr.bin/openssl/man/sess_id.1 stable/8/secure/usr.bin/openssl/man/smime.1 stable/8/secure/usr.bin/openssl/man/speed.1 stable/8/secure/usr.bin/openssl/man/spkac.1 stable/8/secure/usr.bin/openssl/man/verify.1 stable/8/secure/usr.bin/openssl/man/version.1 stable/8/secure/usr.bin/openssl/man/x509.1 stable/8/secure/usr.bin/openssl/man/x509v3_config.1 Modified: stable/8/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ASN1_STRING_length.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ASN1_STRING_length.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ASN1_STRING_length.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ASN1_STRING_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ASN1_STRING_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ASN1_STRING_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ASN1_generate_nconf.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ASN1_generate_nconf.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ASN1_generate_nconf.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_ctrl.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_ctrl.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_ctrl.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_f_base64.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_f_base64.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_f_base64.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_f_buffer.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_f_buffer.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_f_buffer.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_f_cipher.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_f_cipher.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_f_cipher.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_f_md.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_f_md.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_f_md.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_f_null.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_f_null.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_f_null.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_f_ssl.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_f_ssl.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_f_ssl.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_find_type.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_find_type.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_find_type.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_push.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_push.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_push.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_read.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_read.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_read.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_accept.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_accept.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_accept.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_bio.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_bio.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_bio.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_connect.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_connect.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_connect.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_fd.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_fd.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_fd.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_file.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_file.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_file.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_mem.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_mem.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_mem.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_null.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_null.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_null.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_s_socket.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_s_socket.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_s_socket.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_set_callback.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_set_callback.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_set_callback.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BIO_should_retry.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BIO_should_retry.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BIO_should_retry.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_BLINDING_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_BLINDING_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_BLINDING_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_CTX_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_CTX_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_CTX_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_CTX_start.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_CTX_start.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_CTX_start.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_add.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_add.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_add.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_add_word.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_add_word.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_add_word.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_bn2bin.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_bn2bin.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_bn2bin.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_cmp.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_cmp.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_cmp.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_copy.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_copy.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_copy.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_generate_prime.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_generate_prime.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_generate_prime.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_mod_inverse.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_mod_inverse.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_mod_inverse.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_num_bytes.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_num_bytes.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_num_bytes.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_rand.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_rand.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_rand.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_set_bit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_set_bit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_set_bit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_swap.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_swap.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_swap.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/BN_zero.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/BN_zero.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/BN_zero.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/CONF_modules_free.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/CONF_modules_free.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/CONF_modules_free.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/CONF_modules_load_file.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/CONF_modules_load_file.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/CONF_modules_load_file.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DH_generate_key.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DH_generate_key.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DH_generate_key.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DH_generate_parameters.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DH_generate_parameters.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DH_generate_parameters.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DH_get_ex_new_index.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DH_get_ex_new_index.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DH_get_ex_new_index.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DH_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DH_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DH_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DH_set_method.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DH_set_method.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DH_set_method.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DH_size.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DH_size.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DH_size.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_SIG_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_SIG_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_SIG_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_do_sign.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_do_sign.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_do_sign.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_dup_DH.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_dup_DH.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_dup_DH.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_generate_key.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_generate_key.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_generate_key.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_generate_parameters.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_generate_parameters.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_generate_parameters.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_set_method.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_set_method.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_set_method.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_sign.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_sign.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_sign.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/DSA_size.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/DSA_size.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/DSA_size.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_GET_LIB.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_GET_LIB.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_GET_LIB.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_clear_error.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_clear_error.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_clear_error.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_error_string.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_error_string.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_error_string.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_get_error.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_get_error.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_get_error.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_load_strings.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_load_strings.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_load_strings.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_print_errors.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_print_errors.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_print_errors.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_put_error.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_put_error.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_put_error.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_remove_state.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_remove_state.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_remove_state.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/ERR_set_mark.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/ERR_set_mark.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/ERR_set_mark.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_BytesToKey.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_BytesToKey.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_BytesToKey.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_DigestInit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_DigestInit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_DigestInit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_EncryptInit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_EncryptInit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_EncryptInit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_OpenInit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_OpenInit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_OpenInit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_PKEY_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_PKEY_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_PKEY_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_SealInit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_SealInit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_SealInit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_SignInit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_SignInit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_SignInit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/EVP_VerifyInit.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/EVP_VerifyInit.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/EVP_VerifyInit.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OBJ_nid2obj.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OBJ_nid2obj.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OBJ_nid2obj.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OPENSSL_Applink.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OPENSSL_Applink.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OPENSSL_Applink.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OPENSSL_config.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OPENSSL_config.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OPENSSL_config.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/PKCS12_create.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/PKCS12_create.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/PKCS12_create.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/PKCS12_parse.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/PKCS12_parse.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/PKCS12_parse.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/PKCS7_decrypt.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/PKCS7_decrypt.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/PKCS7_decrypt.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/PKCS7_encrypt.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/PKCS7_encrypt.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/PKCS7_encrypt.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/PKCS7_sign.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/PKCS7_sign.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/PKCS7_sign.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/PKCS7_verify.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/PKCS7_verify.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/PKCS7_verify.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RAND_add.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RAND_add.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RAND_add.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RAND_bytes.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RAND_bytes.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RAND_bytes.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RAND_cleanup.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RAND_cleanup.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RAND_cleanup.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RAND_egd.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RAND_egd.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RAND_egd.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RAND_load_file.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RAND_load_file.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RAND_load_file.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RAND_set_rand_method.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RAND_set_rand_method.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RAND_set_rand_method.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_blinding_on.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_blinding_on.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_blinding_on.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_check_key.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_check_key.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_check_key.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_generate_key.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_generate_key.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_generate_key.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_print.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_print.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_print.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_private_encrypt.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_private_encrypt.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_private_encrypt.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_public_encrypt.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_public_encrypt.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_public_encrypt.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_set_method.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_set_method.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_set_method.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_sign.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_sign.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_sign.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/RSA_size.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/RSA_size.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/RSA_size.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/X509_NAME_print_ex.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/X509_NAME_print_ex.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/X509_NAME_print_ex.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/X509_new.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/X509_new.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/X509_new.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/bio.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/bio.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/bio.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/blowfish.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/blowfish.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/blowfish.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/bn.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/bn.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/bn.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== Modified: stable/8/secure/lib/libcrypto/man/bn_internal.3 ============================================================================== --- stable/8/secure/lib/libcrypto/man/bn_internal.3 Fri Mar 15 23:00:13 2013 (r248359) +++ stable/8/secure/lib/libcrypto/man/bn_internal.3 Sat Mar 16 01:16:57 2013 (r248360) @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.16) +.\" Automatically generated by Pod::Man 2.25 (Pod::Simple 3.20) .\" .\" Standard preamble: .\" ======================================================================== *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-stable-8@FreeBSD.ORG Sat Mar 16 22:43:09 2013 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 00CCC119; Sat, 16 Mar 2013 22:43:08 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CDD22706; Sat, 16 Mar 2013 22:43:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2GMh8QI036643; Sat, 16 Mar 2013 22:43:08 GMT (envelope-from des@svn.freebsd.org) Received: (from des@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2GMh81w036642; Sat, 16 Mar 2013 22:43:08 GMT (envelope-from des@svn.freebsd.org) Message-Id: <201303162243.r2GMh81w036642@svn.freebsd.org> From: Dag-Erling Smørgrav Date: Sat, 16 Mar 2013 22:43:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r248390 - stable/8/sys/compat/linprocfs X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Mar 2013 22:43:09 -0000 Author: des Date: Sat Mar 16 22:43:08 2013 New Revision: 248390 URL: http://svnweb.freebsd.org/changeset/base/248390 Log: MFH (r214982, r214985): fix CPU ID in /proc/cpuinfo. PR: kern/56451 Approved by: re (kib) Modified: stable/8/sys/compat/linprocfs/linprocfs.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/compat/ (props changed) Modified: stable/8/sys/compat/linprocfs/linprocfs.c ============================================================================== --- stable/8/sys/compat/linprocfs/linprocfs.c Sat Mar 16 22:40:20 2013 (r248389) +++ stable/8/sys/compat/linprocfs/linprocfs.c Sat Mar 16 22:43:08 2013 (r248390) @@ -276,11 +276,12 @@ linprocfs_docpuinfo(PFS_FILL_ARGS) sbuf_printf(sb, "processor\t: %d\n" "vendor_id\t: %.20s\n" - "cpu family\t: %d\n" - "model\t\t: %d\n" + "cpu family\t: %u\n" + "model\t\t: %u\n" "model name\t: %s\n" - "stepping\t: %d\n", - i, cpu_vendor, class, cpu, model, cpu_id & 0xf); + "stepping\t: %u\n\n", + i, cpu_vendor, CPUID_TO_FAMILY(cpu_id), + CPUID_TO_MODEL(cpu_id), model, cpu_id & CPUID_STEPPING); /* XXX per-cpu vendor / class / model / id? */ }