1
0
mirror of https://github.com/PDP-10/klh10.git synced 2026-02-08 17:22:03 +00:00

Fix incorrect identification to VDE (should be klh10 of course).

This commit is contained in:
Olaf Seibert
2017-12-14 20:37:08 +01:00
parent 2242d4f226
commit ba556fbd9d

View File

@@ -2312,7 +2312,7 @@ osn_pfinit_vde(struct pfdata *pfdata, struct osnpf *osnpf, void *pfarg)
memset(&voa, 0, sizeof(voa));
if (!(pfdata->pf_handle = (void*) vde_open(devname, "simh", &voa))) {
if (!(pfdata->pf_handle = (void*) vde_open(devname, "klh10", &voa))) {
syserr(errno, "Can't open VDE device \"%s\"", devname);
} else {
pfdata->pf_fd = vde_datafd((VDECONN*)(pfdata->pf_handle));