diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-06-07 23:15:50 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2017-06-07 23:15:50 +0000 |
commit | fa0a06c41e07e3cd1d313f2925f9f29b94af1889 (patch) | |
tree | db0400c66c4ec1805e76e1f0ad1d9af4f62bd341 /usr.sbin | |
parent | 15f5a6fb0dcd90a1a339aaa9d7508a048877ec4c (diff) |
vmctl: change default "vmctl console" (cu) baud rate to 115200. Not
strictly needed but matches the previous baudrate diff committed earlier
to vmd.
ok deraadt, phessler
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/vmctl/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/vmctl/main.c b/usr.sbin/vmctl/main.c index 5beca174496..632c22150e2 100644 --- a/usr.sbin/vmctl/main.c +++ b/usr.sbin/vmctl/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.28 2017/05/04 19:41:58 reyk Exp $ */ +/* $OpenBSD: main.c,v 1.29 2017/06/07 23:15:49 mlarkin Exp $ */ /* * Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org> @@ -620,6 +620,6 @@ __dead void ctl_openconsole(const char *name) { closefrom(STDERR_FILENO + 1); - execl(VMCTL_CU, VMCTL_CU, "-l", name, "-s", "9600", (char *)NULL); + execl(VMCTL_CU, VMCTL_CU, "-l", name, "-s", "115200", (char *)NULL); err(1, "failed to open the console"); } |