svn commit: r355912 - head/usr.sbin/bhyve

John Baldwin jhb at FreeBSD.org
Thu Dec 19 15:36:01 UTC 2019


Author: jhb
Date: Thu Dec 19 15:36:00 2019
New Revision: 355912
URL: https://svnweb.freebsd.org/changeset/base/355912

Log:
  Trim a spurious carriage return from the RFB signature string added in r355301.
  
  Submitted by:	Yamagi <lists at yamagi.org>

Modified:
  head/usr.sbin/bhyve/rfb.c

Modified: head/usr.sbin/bhyve/rfb.c
==============================================================================
--- head/usr.sbin/bhyve/rfb.c	Thu Dec 19 15:11:01 2019	(r355911)
+++ head/usr.sbin/bhyve/rfb.c	Thu Dec 19 15:36:00 2019	(r355912)
@@ -744,7 +744,7 @@ rfb_wr_thr(void *arg)
 void
 rfb_handle(struct rfb_softc *rc, int cfd)
 {
-	const char *vbuf = "RFB 003.008\n\r";
+	const char *vbuf = "RFB 003.008\n";
 	unsigned char buf[80];
 	unsigned char *message = NULL;
 


More information about the svn-src-head mailing list