fix return codes for makeSignature()

CVS patchset: 390
CVS date: 1996/02/22 01:59:29
This commit is contained in:
root 1996-02-22 01:59:29 +00:00
parent 379473e17e
commit dfb5ed188b
1 changed files with 3 additions and 5 deletions

View File

@ -51,15 +51,13 @@ int readSignature(int fd, short sig_type, void **sig)
int makeSignature(char *file, short sig_type, int ofd, char *passPhrase)
{
switch (sig_type) {
case RPMSIG_NONE:
/* Do nothing */
break;
case RPMSIG_PGP262_1024:
makePGPSignature(file, ofd, passPhrase);
return makePGPSignature(file, ofd, passPhrase);
break;
case RPMSIG_NONE:
}
return 1;
return 0;
}
#if 0