Commit b111c5b8 authored by Lutz Jänicke's avatar Lutz Jänicke
Browse files

Fix buggy if-condition (thomas poindessous <poinde_t@epita.fr>).

parent 7228bfb4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ void main_encrypt(void)

        pubKey[0] = ReadPublicKey(PUBFILE);

	if(!pubKey)
	if(!pubKey[0])
	{
           fprintf(stderr,"Error: can't load public key");
           exit(1);