summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/s_time.c
diff options
context:
space:
mode:
authorcheloha <>2018-07-13 18:36:56 +0000
committercheloha <>2018-07-13 18:36:56 +0000
commit4ffff01bec4bc66afd2ef22fba624a0d3cffdc04 (patch)
tree59b9811cbdf2d09e36af97ea0c076544d116dd13 /src/usr.bin/openssl/s_time.c
parent2784227e885350759036fb7b1ecc5b560746db18 (diff)
downloadopenbsd-4ffff01bec4bc66afd2ef22fba624a0d3cffdc04.tar.gz
openbsd-4ffff01bec4bc66afd2ef22fba624a0d3cffdc04.tar.bz2
openbsd-4ffff01bec4bc66afd2ef22fba624a0d3cffdc04.zip
openssl app timers: TM_START -> TM_RESET, TM_STOP -> TM_GET
Much more apt than the current operation names. Names suggested by jca@ ages ago. ok jca, jsing
Diffstat (limited to 'src/usr.bin/openssl/s_time.c')
-rw-r--r--src/usr.bin/openssl/s_time.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr.bin/openssl/s_time.c b/src/usr.bin/openssl/s_time.c
index ed89160b23..0d0b771281 100644
--- a/src/usr.bin/openssl/s_time.c
+++ b/src/usr.bin/openssl/s_time.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s_time.c,v 1.23 2018/02/07 05:47:55 jsing Exp $ */ 1/* $OpenBSD: s_time.c,v 1.24 2018/07/13 18:36:56 cheloha Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -228,8 +228,8 @@ s_time_usage(void)
228/*********************************************************************** 228/***********************************************************************
229 * TIME - time functions 229 * TIME - time functions
230 */ 230 */
231#define START 0 231#define START TM_RESET
232#define STOP 1 232#define STOP TM_GET
233 233
234static double 234static double
235tm_Time_F(int op) 235tm_Time_F(int op)