artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c8a0ea
)
Fix typo in previous
author
tb
<tb@openbsd.org>
Tue, 15 Aug 2023 17:40:06 +0000
(17:40 +0000)
committer
tb
<tb@openbsd.org>
Tue, 15 Aug 2023 17:40:06 +0000
(17:40 +0000)
lib/libcrypto/asn1/a_string.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/asn1/a_string.c
b/lib/libcrypto/asn1/a_string.c
index
ca03008
..
7deaf38
100644
(file)
--- a/
lib/libcrypto/asn1/a_string.c
+++ b/
lib/libcrypto/asn1/a_string.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: a_string.c,v 1.1
5 2023/08/15 17:38:00
tb Exp $ */
+/* $OpenBSD: a_string.c,v 1.1
6 2023/08/15 17:40:06
tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-121,7
+121,7
@@
ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b)
return cmp;
if (a->length != 0) {
if ((cmp = memcmp(a->data, b->data, a->length)) != 0)
- return
0
;
+ return
cmp
;
}
return a->type - b->type;