mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 14:57:20 +00:00
[client] main: fix reversed check logic from testing/debug
This commit is contained in:
parent
7bcd0dd97f
commit
8cdeaceed9
@ -843,7 +843,7 @@ static void checkUUID(void)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (memcmp(g_state.spiceUUID, g_state.guestUUID,
|
if (memcmp(g_state.spiceUUID, g_state.guestUUID,
|
||||||
sizeof(g_state.spiceUUID)) != 0)
|
sizeof(g_state.spiceUUID)) == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
DEBUG_ERROR("UUIDs do not match, you have connected SPICE to the wrong guest");
|
DEBUG_ERROR("UUIDs do not match, you have connected SPICE to the wrong guest");
|
||||||
|
Loading…
Reference in New Issue
Block a user