1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-03-06 16:11:32 +03:00

nmb_header_opcode_names constified, lookup_opcode_names rewritten to avoid warnings

This commit is contained in:
Andrew V. Samoilov 2000-10-22 15:37:33 +00:00
parent c5ec3ea3d9
commit 49afc747d1

@ -30,7 +30,7 @@ int num_good_receives = 0;
static struct opcode_names {
char *nmb_opcode_name;
int opcode;
} nmb_header_opcode_names[] = {
} const nmb_header_opcode_names[] = {
{"Query", 0 },
{"Registration", 5 },
{"Release", 6 },
@ -46,13 +46,12 @@ static struct opcode_names {
****************************************************************************/
static char *lookup_opcode_name( int opcode )
{
struct opcode_names *op_namep;
int i;
const struct opcode_names *op_namep = nmb_header_opcode_names;
for(i = 0; nmb_header_opcode_names[i].nmb_opcode_name != 0; i++) {
op_namep = &nmb_header_opcode_names[i];
while(op_namep->nmb_opcode_name) {
if(opcode == op_namep->opcode)
return op_namep->nmb_opcode_name;
op_namep++;
}
return "<unknown opcode>";
}