diff options
author | tb <> | 2024-10-11 13:32:22 +0000 |
---|---|---|
committer | tb <> | 2024-10-11 13:32:22 +0000 |
commit | 69ae404e700632823f5e90e30b129975ad41e4aa (patch) | |
tree | 95861bc3665bddcf55053dc2ba5a347dc523cfe0 /src | |
parent | 23dcdce4760fe666605895961399c1961e402969 (diff) | |
download | openbsd-69ae404e700632823f5e90e30b129975ad41e4aa.tar.gz openbsd-69ae404e700632823f5e90e30b129975ad41e4aa.tar.bz2 openbsd-69ae404e700632823f5e90e30b129975ad41e4aa.zip |
err.c: zap stray space
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/err/err.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c index 0d0500a004..ae20463cf9 100644 --- a/src/lib/libcrypto/err/err.c +++ b/src/lib/libcrypto/err/err.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err.c,v 1.72 2024/10/11 12:40:25 jsing Exp $ */ | 1 | /* $OpenBSD: err.c,v 1.73 2024/10/11 13:32:22 tb 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 | * |
@@ -182,7 +182,7 @@ static const ERR_STRING_DATA ERR_str_functs[] = { | |||
182 | {ERR_PACK(ERR_LIB_SYS, SYS_F_LISTEN, 0), "listen"}, | 182 | {ERR_PACK(ERR_LIB_SYS, SYS_F_LISTEN, 0), "listen"}, |
183 | {ERR_PACK(ERR_LIB_SYS, SYS_F_ACCEPT, 0), "accept"}, | 183 | {ERR_PACK(ERR_LIB_SYS, SYS_F_ACCEPT, 0), "accept"}, |
184 | {ERR_PACK(ERR_LIB_SYS, SYS_F_OPENDIR, 0), "opendir"}, | 184 | {ERR_PACK(ERR_LIB_SYS, SYS_F_OPENDIR, 0), "opendir"}, |
185 | {ERR_PACK(ERR_LIB_SYS, SYS_F_FREAD, 0), "fread"}, | 185 | {ERR_PACK(ERR_LIB_SYS, SYS_F_FREAD, 0), "fread"}, |
186 | {0, NULL}, | 186 | {0, NULL}, |
187 | }; | 187 | }; |
188 | 188 | ||