Anthony Liguori wrote:
This option helps differentiate between guests when running more than one instance of QEMU. It adds a string to the SDL window title and to the VNC server title.

Having a name associated with a guest is also terribly useful for management tools as it gives a standard way to identify guests to the user.

- vnc_write_u32(vs, 4); - vnc_write(vs, "QEMU", 4); + if (qemu_name) + size = snprintf(buf, sizeof(buf), "QEMU (%s)", qemu_name);
+    else
+       size = snprintf(buf, sizeof(buf), "QEMU");
+

Perhaps in the modern style:

   snprintf("%s - QEMU", sizeof, qemu_name)

?

--
Do not meddle in the internals of kernels, for they are subtle and quick to 
panic.



_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel

Reply via email to