diff options
author | beck <> | 2021-09-01 09:42:28 +0000 |
---|---|---|
committer | beck <> | 2021-09-01 09:42:28 +0000 |
commit | 8bad097309e1d94fa7fcf4124f2edaec6bc7c459 (patch) | |
tree | 3ac3d138f7dc0e13b2277b15c5a90e66dc5de0f1 /src/lib | |
parent | 15410c1fb383e330324b13897f3703fcfde7969e (diff) | |
download | openbsd-8bad097309e1d94fa7fcf4124f2edaec6bc7c459.tar.gz openbsd-8bad097309e1d94fa7fcf4124f2edaec6bc7c459.tar.bz2 openbsd-8bad097309e1d94fa7fcf4124f2edaec6bc7c459.zip |
Remove assignment of value that is never read.
ok tb@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/objects/obj_dat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/objects/obj_dat.c b/src/lib/libcrypto/objects/obj_dat.c index c0b63e4d85..db2579996e 100644 --- a/src/lib/libcrypto/objects/obj_dat.c +++ b/src/lib/libcrypto/objects/obj_dat.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: obj_dat.c,v 1.42 2019/07/03 03:24:04 deraadt Exp $ */ | 1 | /* $OpenBSD: obj_dat.c,v 1.43 2021/09/01 09:42:28 beck 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 | * |
@@ -628,7 +628,6 @@ OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) | |||
628 | buf_len -= i; | 628 | buf_len -= i; |
629 | } | 629 | } |
630 | ret += i; | 630 | ret += i; |
631 | l = 0; | ||
632 | } | 631 | } |
633 | } | 632 | } |
634 | 633 | ||