Commit 4327aae8 authored by Ulf Möller's avatar Ulf Möller
Browse files

format strings

parent 741a9690
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ void main(void)
		
		tempString[bytesRead] = '\0';
		
		printf(tempString);
		printf("%s", tempString);
	}
	
	printf("\n\n\n");
@@ -201,7 +201,7 @@ EXITPOINT:
	{
		printf("An error occurred:\n");
		
		printf(GetErrorMessage());
		printf("%s",GetErrorMessage());
	}
	
	
+1 −1
Original line number Diff line number Diff line
@@ -479,7 +479,7 @@ bad:
	if (badops)
		{
		for (pp=ca_usage; (*pp != NULL); pp++)
			BIO_printf(bio_err,*pp);
			BIO_printf(bio_err,"%s",*pp);
		goto err;
		}

+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ int MAIN(int argc, char **argv)
	if (badops)
		{
		for (pp=ciphers_usage; (*pp != NULL); pp++)
			BIO_printf(bio_err,*pp);
			BIO_printf(bio_err,"%s",*pp);
		goto end;
		}

+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ int MAIN(int argc, char **argv)
		{
bad:
		for (pp=crl_usage; (*pp != NULL); pp++)
			BIO_printf(bio_err,*pp);
			BIO_printf(bio_err,"%s",*pp);
		goto end;
		}

+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ int MAIN(int argc, char **argv)
		{
bad:
		for (pp=sess_id_usage; (*pp != NULL); pp++)
			BIO_printf(bio_err,*pp);
			BIO_printf(bio_err,"%s",*pp);
		goto end;
		}

Loading