You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2017/11/14 14:07:02 UTC

svn commit: r1815219 - /tomcat/native/trunk/native/src/sslutils.c

Author: markt
Date: Tue Nov 14 14:07:01 2017
New Revision: 1815219

URL: http://svn.apache.org/viewvc?rev=1815219&view=rev
Log:
tabs -> spaces

Modified:
    tomcat/native/trunk/native/src/sslutils.c

Modified: tomcat/native/trunk/native/src/sslutils.c
URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/sslutils.c?rev=1815219&r1=1815218&r2=1815219&view=diff
==============================================================================
--- tomcat/native/trunk/native/src/sslutils.c (original)
+++ tomcat/native/trunk/native/src/sslutils.c Tue Nov 14 14:07:01 2017
@@ -571,15 +571,15 @@ static int parse_asn1_length(unsigned ch
         if (i == 0) {
             /* This is the indefinite form of length. Since certificates use DER
              * this should never happen and is therefore an error.
-        	 */
+             */
             return 1;
         }
         if (i > 3) {
-        	/* Three bytes for length gives a maximum of 16MB which should be
-        	 * far more than is required. (2 bytes is 64K which is probably more
-        	 * than enough but play safe.)
-        	 */
-        	return 1;
+            /* Three bytes for length gives a maximum of 16MB which should be
+             * far more than is required. (2 bytes is 64K which is probably more
+             * than enough but play safe.)
+             */
+            return 1;
         }
 
         // Most significant byte is first



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org