Fix copy-paste error in '-certs' error message

This commit is contained in:
Peter Wu 2014-08-01 20:32:27 +02:00 committed by Travis Cross
parent 5eb01b519e
commit 76e6be2fad

View File

@ -962,7 +962,7 @@ int main(int argc, char *argv[])
else if (!strcmp(local_argv[x], "-certs")) { else if (!strcmp(local_argv[x], "-certs")) {
x++; x++;
if (switch_strlen_zero(local_argv[x]) || is_option(local_argv[x])) { if (switch_strlen_zero(local_argv[x]) || is_option(local_argv[x])) {
fprintf(stderr, "When using -certs you must specify a grammar directory\n"); fprintf(stderr, "When using -certs you must specify a certificates directory\n");
return 255; return 255;
} }