]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/asn1/a_utctm.c
indent has problems with comments that are on the right hand side of a line.
[thirdparty/openssl.git] / crypto / asn1 / a_utctm.c
index 468123cc6f888918b13a7eede584d1c476e18179..08ece293bfe1aa55ef2de6a6cb4b901f41f4813c 100644 (file)
@@ -346,13 +346,16 @@ time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s)
                }
 #undef g2
 
-       return mktime(&tm)-offset*60; /* FIXME: mktime assumes the current timezone
-                                      * instead of UTC, and unless we rewrite OpenSSL
-                                      * in Lisp we cannot locally change the timezone
-                                      * without possibly interfering with other parts
-                                      * of the program. timegm, which uses UTC, is
-                                      * non-standard.
-                                      * Also time_t is inappropriate for general
-                                      * UTC times because it may a 32 bit type. */
+       /*
+        * FIXME: mktime assumes the current timezone
+        * instead of UTC, and unless we rewrite OpenSSL
+        * in Lisp we cannot locally change the timezone
+        * without possibly interfering with other parts
+        * of the program. timegm, which uses UTC, is
+        * non-standard.
+        * Also time_t is inappropriate for general
+        * UTC times because it may a 32 bit type.
+        */
+       return mktime(&tm)-offset*60; 
        }
 #endif