From: beck Date: Wed, 1 Sep 2021 09:42:28 +0000 (+0000) Subject: Remove assignment of value that is never read. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6ed312b1a7196c0c926be62ae782eebb71597db4;p=openbsd Remove assignment of value that is never read. ok tb@ --- diff --git a/lib/libcrypto/objects/obj_dat.c b/lib/libcrypto/objects/obj_dat.c index c0b63e4d852..db2579996ea 100644 --- a/lib/libcrypto/objects/obj_dat.c +++ b/lib/libcrypto/objects/obj_dat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: obj_dat.c,v 1.42 2019/07/03 03:24:04 deraadt Exp $ */ +/* $OpenBSD: obj_dat.c,v 1.43 2021/09/01 09:42:28 beck Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -628,7 +628,6 @@ OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) buf_len -= i; } ret += i; - l = 0; } }