Fix spelling error

Thanks to Debian lintian:
I: opensc: spelling-error-in-binary usr/bin/netkey-tool conatin contain
I: opensc: spelling-error-in-binary usr/bin/piv-tool conatin contain
This commit is contained in:
Ludovic Rousseau 2020-08-29 23:17:02 +02:00
parent a70b082a09
commit 7fc00a1178
2 changed files with 2 additions and 2 deletions

View File

@ -370,7 +370,7 @@ static void handle_writecert(sc_card_t *card, int cert, char *file)
c=PEM_read_X509(fp,NULL,NULL,NULL);
fclose(fp);
if(c==NULL){
printf("file does not conatin PEM-encoded certificate\n");
printf("file does not contain PEM-encoded certificate\n");
return;
}
printf("OK\nStoring Cert into Card-Certificate %d: ", cert); fflush(stdout);

View File

@ -210,7 +210,7 @@ static int load_cert(const char * cert_id, const char * cert_file,
} else {
cert = PEM_read_X509(fp, &cert, NULL, NULL);
if(cert == NULL){
printf("file %s does not conatin PEM-encoded certificate\n",
printf("file %s does not contain PEM-encoded certificate\n",
cert_file);
goto err;
}