Merge branch 'obsd-master'

pull/2075/head
Thomas Adam 2020-01-29 18:01:24 +00:00
commit 32be954bdd
1 changed files with 6 additions and 0 deletions

View File

@ -865,6 +865,12 @@ client_dispatch_wait(struct imsg *imsg)
case MSG_WRITE_CLOSE:
client_write_close(data, datalen);
break;
case MSG_OLDSTDERR:
case MSG_OLDSTDIN:
case MSG_OLDSTDOUT:
fprintf(stderr, "server version is too old for client\n");
proc_exit(client_proc);
break;
}
}