indent has problems with comments that are on the right hand side of a line.
[openssl.git] / crypto / store / str_mem.c
index 8ac4f7e55c70b8440223a3b064b42dd2981d2df4..021d828325664e0ba9df736f63adf8de2649c99a 100644 (file)
@@ -86,25 +86,38 @@ typedef struct mem_object_data_st
 DECLARE_STACK_OF(MEM_OBJECT_DATA)
 struct mem_data_st
        {
-       STACK_OF(MEM_OBJECT_DATA) *data; /* sorted with
-                                         * STORE_ATTR_INFO_compare(). */
-       unsigned int compute_components : 1; /* Currently unused, but can
-                                               be used to add attributes
-                                               from parts of the data. */
+       /*
+        * sorted with
+        * STORE_ATTR_INFO_compare().
+        */
+       STACK_OF(MEM_OBJECT_DATA) *data; 
+       /*
+        * Currently unused, but can
+        * be used to add attributes
+        * from parts of the data.
+        */
+       unsigned int compute_components : 1;
        };
 
 DECLARE_STACK_OF(STORE_ATTR_INFO)
 struct mem_ctx_st
        {
-       int type;               /* The type we're searching for */
-       STACK_OF(STORE_ATTR_INFO) *search_attributes; /* Sets of
-                                    attributes to search for.  Each
-                                    element is a STORE_ATTR_INFO. */
-       int search_index;       /* which of the search attributes we
-                                  found a match for, -1 when we still
-                                  haven't found any */
-       int index;              /* -1 as long as we're searching for
-                                    the first */
+       /* The type we're searching for */
+       int type;
+       /*
+        * Sets of
+        * attributes to search for.  Each
+        * element is a STORE_ATTR_INFO.
+        */
+       STACK_OF(STORE_ATTR_INFO) *search_attributes;
+       /*
+        * which of the search attributes we
+        * found a match for, -1 when we still
+        * haven't found any
+        */ 
+       int search_index;
+       /* -1 as long as we're searching for the first */
+       int index;
        };
 
 static int mem_init(STORE *s);