Hopefully fix codeql warning about cleartext storage of sensitive information

pull/1640/head
Michael Black W9MDB 2024-12-22 10:32:59 -06:00
rodzic 89383a553a
commit 57c5047c3e
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -1406,7 +1406,8 @@ int ampctl_parse(AMP *my_amp, FILE *fin, FILE *fout, char *argv[], int argc)
}
else
{
fprintf(fout, "%s: error = %s\n", cmd_entry->name, rigerror(retcode));
fprintf(fout, "error = %s\n", rigerror(retcode));
//fprintf(fout, "%s: error = %s\n", cmd_entry->name, rigerror(retcode));
}
}
else