Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7FD3511385 for ; Sat, 26 Jul 2014 00:00:32 +0000 (UTC) Received: (qmail 9588 invoked by uid 500); 26 Jul 2014 00:00:32 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 9556 invoked by uid 500); 26 Jul 2014 00:00:32 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 9544 invoked by uid 99); 26 Jul 2014 00:00:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 26 Jul 2014 00:00:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 26 Jul 2014 00:00:31 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B3FA72388C02; Sat, 26 Jul 2014 00:00:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1613538 - /subversion/branches/svn-auth-x509/subversion/svn/auth-cmd.c Date: Sat, 26 Jul 2014 00:00:10 -0000 To: commits@subversion.apache.org From: breser@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140726000010.B3FA72388C02@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: breser Date: Sat Jul 26 00:00:10 2014 New Revision: 1613538 URL: http://svn.apache.org/r1613538 Log: On svn-auth-x509 branch, restore some disabled output from auth command. This does mean that svn.ssl.server entries created with 1.9.x versions before this will output some spurious entries from when we wrote out details about the certificate to the credential cache. * subversion/svn/auth-cmd.c: (list_credential): Restore the reason the cert failed normal validation and the output of unknown keys. Modified: subversion/branches/svn-auth-x509/subversion/svn/auth-cmd.c Modified: subversion/branches/svn-auth-x509/subversion/svn/auth-cmd.c URL: http://svn.apache.org/viewvc/subversion/branches/svn-auth-x509/subversion/svn/auth-cmd.c?rev=1613538&r1=1613537&r2=1613538&view=diff ============================================================================== --- subversion/branches/svn-auth-x509/subversion/svn/auth-cmd.c (original) +++ subversion/branches/svn-auth-x509/subversion/svn/auth-cmd.c Sat Jul 26 00:00:10 2014 @@ -276,11 +276,11 @@ list_credential(const char *cred_kind, else if (strcmp(key, SVN_CONFIG_AUTHN_FINGERPRINT_KEY) == 0) SVN_ERR(svn_cmdline_printf(iterpool, _("Fingerprint: %s\n"), value->data)); +#endif else if (strcmp(key, SVN_CONFIG_AUTHN_FAILURES_KEY) == 0) SVN_ERR(show_cert_failures(value->data, iterpool)); else SVN_ERR(svn_cmdline_printf(iterpool, "%s: %s\n", key, value->data)); -#endif } svn_pool_destroy(iterpool);