You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2014/06/26 18:36:28 UTC

svn commit: r1605845 - /subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c

Author: breser
Date: Thu Jun 26 16:36:28 2014
New Revision: 1605845

URL: http://svn.apache.org/r1605845
Log:
On svn-auth-x509 branch, fix comment/formatting.

* subversion/libsvn_subr/x509parse.c
  (x509parse_dn_gets): Fix comment describing the function and 
    wrap the declartion.

Modified:
    subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c

Modified: subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c
URL: http://svn.apache.org/viewvc/subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c?rev=1605845&r1=1605844&r2=1605845&view=diff
==============================================================================
--- subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c (original)
+++ subversion/branches/svn-auth-x509/subversion/libsvn_subr/x509parse.c Thu Jun 26 16:36:28 2014
@@ -502,11 +502,12 @@ x509_skip_ext(const unsigned char **p,
 }
 
 /*
- * Store the name in printable form into buf; no more
- * than (end - buf) characters will be written
+ * Store the name from dn in printable form into buf,
+ * using scratch_pool for any temporary allocations.
  */
 static void
-x509parse_dn_gets(svn_stringbuf_t *buf, const x509_name * dn, apr_pool_t *scratch_pool)
+x509parse_dn_gets(svn_stringbuf_t *buf, const x509_name * dn,
+                  apr_pool_t *scratch_pool)
 {
   int i;
   const x509_name *name;