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/apps.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/usr.bin/openssl/apps.h') diff --git a/src/usr.bin/openssl/apps.h b/src/usr.bin/openssl/apps.h index d02169b8aa..cfc6036ccf 100644 --- a/src/usr.bin/openssl/apps.h +++ b/src/usr.bin/openssl/apps.h @@ -1,4 +1,4 @@ -/* $OpenBSD: apps.h,v 1.20 2017/12/05 15:02:06 jca Exp $ */ +/* $OpenBSD: apps.h,v 1.21 2018/07/13 18:36:56 cheloha Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -277,10 +277,10 @@ unsigned char *next_protos_parse(unsigned short *outlen, const char *in); int app_isdir(const char *); -#define TM_START 0 -#define TM_STOP 1 -double app_timer_real(int stop); -double app_timer_user(int stop); +#define TM_RESET 0 +#define TM_GET 1 +double app_timer_real(int); +double app_timer_user(int); #define OPENSSL_NO_SSL_INTERN -- cgit v1.2.3-55-g6feb