summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/apps.h
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/apps.h
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/apps.h')
-rw-r--r--src/usr.bin/openssl/apps.h10
1 files changed, 5 insertions, 5 deletions
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 @@
1/* $OpenBSD: apps.h,v 1.20 2017/12/05 15:02:06 jca Exp $ */ 1/* $OpenBSD: apps.h,v 1.21 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 *
@@ -277,10 +277,10 @@ unsigned char *next_protos_parse(unsigned short *outlen, const char *in);
277 277
278int app_isdir(const char *); 278int app_isdir(const char *);
279 279
280#define TM_START 0 280#define TM_RESET 0
281#define TM_STOP 1 281#define TM_GET 1
282double app_timer_real(int stop); 282double app_timer_real(int);
283double app_timer_user(int stop); 283double app_timer_user(int);
284 284
285#define OPENSSL_NO_SSL_INTERN 285#define OPENSSL_NO_SSL_INTERN
286 286