From 182fcc7a1cd60e88ee410f32eee6b047e72ddf77 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Mon, 28 Aug 2017 17:42:47 +0000 Subject: Put the opening curly brace in the right place. --- src/lib/libcrypto/asn1/a_time_tm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/libcrypto/asn1/a_time_tm.c b/src/lib/libcrypto/asn1/a_time_tm.c index 48f9f8b5e1..b13f7c767f 100644 --- a/src/lib/libcrypto/asn1/a_time_tm.c +++ b/src/lib/libcrypto/asn1/a_time_tm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_time_tm.c,v 1.13 2017/08/13 19:47:49 beck Exp $ */ +/* $OpenBSD: a_time_tm.c,v 1.14 2017/08/28 17:42:47 jsing Exp $ */ /* * Copyright (c) 2015 Bob Beck * @@ -30,7 +30,8 @@ #define UTCTIME_LENGTH 13 int -ASN1_time_tm_cmp(struct tm *tm1, struct tm *tm2) { +ASN1_time_tm_cmp(struct tm *tm1, struct tm *tm2) +{ if (tm1->tm_year < tm2->tm_year) return (-1); if (tm1->tm_year > tm2->tm_year) -- cgit v1.2.3-55-g6feb