Skip to content

Commit

Permalink
gpgv: removed non-English variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
VMiklos committed Jun 24, 2006
1 parent c256913 commit 1991a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpgv/foo.c
Expand Up @@ -43,11 +43,11 @@ int gpg(char *keys, char *file)

int main()
{
if(gpg("/home/vmiklos/.gnupg/pubring.gpg", "rossz/pacman-3.3.2.tar.gz.asc"))
if(gpg("/home/vmiklos/.gnupg/pubring.gpg", "good/pacman-3.3.2.tar.gz.asc"))
printf("ok\n");
else
printf("failed\n");
if(gpg("/home/vmiklos/.gnupg/pubring.gpg", "jo/pacman-3.3.2.tar.gz.asc"))
if(gpg("/home/vmiklos/.gnupg/pubring.gpg", "bad/pacman-3.3.2.tar.gz.asc"))
printf("ok\n");
else
printf("failed\n");
Expand Down

0 comments on commit 1991a6d

Please sign in to comment.