mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-10-17 04:48:15 +00:00
change spice port type to unsigned short
so that ports >32767 get displayed correctly, also signed overflow is undefined behaviour Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:

committed by
Geoffrey McRae

parent
92d87d983b
commit
59cac9c0cc
@@ -138,7 +138,7 @@ bool spice_discard (const struct SpiceChannel * channel, ssize_t size);
|
||||
|
||||
// ============================================================================
|
||||
|
||||
bool spice_connect(const char * host, const short port, const char * password)
|
||||
bool spice_connect(const char * host, const unsigned short port, const char * password)
|
||||
{
|
||||
strncpy(spice.password, password, sizeof(spice.password) - 1);
|
||||
memset(&spice.addr, 0, sizeof(spice.addr));
|
||||
|
Reference in New Issue
Block a user