mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-24 12:21:22 +00:00
[client] main: fix reversed check logic from testing/debug
This commit is contained in:
parent
7bcd0dd97f
commit
8cdeaceed9
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue