From 4ffff01bec4bc66afd2ef22fba624a0d3cffdc04 Mon Sep 17 00:00:00 2001 From: cheloha <> Date: Fri, 13 Jul 2018 18:36:56 +0000 Subject: 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 --- src/usr.bin/openssl/s_time.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/usr.bin/openssl/s_time.c') 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 @@ -/* $OpenBSD: s_time.c,v 1.23 2018/02/07 05:47:55 jsing Exp $ */ +/* $OpenBSD: s_time.c,v 1.24 2018/07/13 18:36:56 cheloha Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -228,8 +228,8 @@ s_time_usage(void) /*********************************************************************** * TIME - time functions */ -#define START 0 -#define STOP 1 +#define START TM_RESET +#define STOP TM_GET static double tm_Time_F(int op) -- cgit v1.2.3-55-g6feb