From 9013cb60fb1b28537a185fc98486d74e7cf39ea1 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 14 Oct 2019 12:30:10 -0400 Subject: Fix semicolons yet again (GH #889) So it looks like sed added a '\r' between the closing paren and the semi. Grepping for '^;' failed because the '\r' was considered part of the previous line, so it showed no hits. I finally had to write a C program to properly identify and fix those damn stray semicolons. --- dsa.h | 1 - 1 file changed, 1 deletion(-) (limited to 'dsa.h') diff --git a/dsa.h b/dsa.h index 07e3e89d..62837de9 100644 --- a/dsa.h +++ b/dsa.h @@ -46,4 +46,3 @@ size_t DSAConvertSignatureFormat(byte *buffer, size_t bufferSize, DSASignatureFo NAMESPACE_END #endif // CRYPTOPP_DSA_H - -- cgit v1.2.1