aboutsummaryrefslogtreecommitdiff
path: root/src/openvpn/otime.c
diff options
context:
space:
mode:
authorArne Schwabe2020-06-26 14:53:32 +0200
committerGert Doering2020-06-26 14:58:47 +0200
commitc1ff8f247f91c88a2df5502eeedf42857f9a6831 (patch)
treeab830fc46a787442e229ec39411b1afe7dc18a51 /src/openvpn/otime.c
parentc67e93b25208be2e893473bea4aabccbde914f47 (diff)
downloadopenvpn-c1ff8f247f91c88a2df5502eeedf42857f9a6831.zip
openvpn-c1ff8f247f91c88a2df5502eeedf42857f9a6831.tar.gz
Reformat files using uncrustify
Some of the commits, especially engine have not strictly used uncrustify clean code. Rerun uncrustify to make them compliant again. Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <20200626125332.15385-1-arne@rfc2549.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg20142.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'src/openvpn/otime.c')
-rw-r--r--src/openvpn/otime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvpn/otime.c b/src/openvpn/otime.c
index b7eb1ed..640168a 100644
--- a/src/openvpn/otime.c
+++ b/src/openvpn/otime.c
@@ -130,8 +130,8 @@ time_string(time_t t, int usec, bool show_usec, struct gc_arena *gc)
struct tm *tm = localtime(&t);
buf_printf(&out, "%04d-%02d-%02d %02d:%02d:%02d",
- tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
- tm->tm_hour, tm->tm_min, tm->tm_sec);
+ tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
+ tm->tm_hour, tm->tm_min, tm->tm_sec);
if (show_usec && tv.tv_usec)
{