1
0
mirror of https://github.com/PDP-10/klh10.git synced 2026-01-11 23:52:54 +00:00

Default ifmeth=pcap

If no chudp-specific parameters given, and no ifmeth given, default to pcap.
This commit is contained in:
Björn Victor 2021-07-05 19:30:39 +02:00
parent f432d23c41
commit 3c7e11bda5

View File

@ -452,8 +452,8 @@ ch11_conf(FILE *f, char *s, struct ch11 *ch)
fprintf(f, "CH11 assuming \"chudp\" interface method\n");
ch->ch_ifmeth = s_dup("chudp");
} else {
fprintf(f, "CH11 does not know which interface method to use, none specified?\n");
return FALSE;
fprintf(f, "CH11 assuming \"pcap\" interface method since no chudp parameters given\n");
ch->ch_ifmeth = s_dup("pcap");
}
return ret;