doc/man3: use the documented coding style in the example code
[openssl.git] / doc / man3 / ASN1_TIME_set.pod
index 457b7218d4ccb5d5464a0991067546e285555154..b6acd730b7314e2100833d7ba993a15895c93b7c 100644 (file)
@@ -100,14 +100,14 @@ Determine if one time is later or sooner than the current time:
  int day, sec;
 
  if (!ASN1_TIME_diff(&day, &sec, NULL, to))
-        /* Invalid time format */
+     /* Invalid time format */
 
  if (day > 0 || sec > 0)
-   printf("Later\n");
+     printf("Later\n");
  else if (day < 0 || sec < 0)
-   printf("Sooner\n");
+     printf("Sooner\n");
  else
-   printf("Same\n");
+     printf("Same\n");
 
 =head1 RETURN VALUES