Allow WLR_RDP_PORT to be any valid TCP/UDP port number

This commit is contained in:
Jason 2020-01-08 17:57:26 +09:00 committed by Simon Ser
parent a2cbb4e417
commit b5cb6de232
1 changed files with 2 additions and 2 deletions

View File

@ -157,9 +157,9 @@ static struct wlr_backend *attempt_rdp_backend(struct wl_display *display,
if (_port) {
char *endptr;
int port = strtol(_port, &endptr, 10);
if (*endptr || port <= 0 || port >= 1024) {
if (*endptr || port <= 0 || port > 65535) {
wlr_log(WLR_ERROR, "Expected WLR_RDP_PORT to be a "
"positive integer less than 1024");
"positive integer less or equal to 65535");
wlr_backend_destroy(backend);
return NULL;
}