Skip to content

Commit 094bb2f

Browse files
author
Dennis Goodlett
committed
fix tabs
1 parent b46b99d commit 094bb2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

verifyme.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ static char *getfile() {
3030
}
3131

3232
int RSA_verify(int type, const unsigned char *m, unsigned int m_length,
33-
const unsigned char *sigbuf, unsigned int siglen, RSA *rsa){
33+
const unsigned char *sigbuf, unsigned int siglen, RSA *rsa){
3434

3535
static int (*rverify)(int, const unsigned char*, unsigned int, const
3636
unsigned char*, unsigned int, RSA *) = NULL;
3737
if (!alwaysbuff) {
3838
alwaysbuff = getfile();
3939
}
4040
if (!rverify) {
41-
rverify = dlsym(RTLD_NEXT, "RSA_verify");
41+
rverify = dlsym(RTLD_NEXT, "RSA_verify");
4242
}
4343
if (alwaysbuff) {
4444
if(siglen == alwayssize) {

0 commit comments

Comments
 (0)