From 3bfdf6b4778d9b2814c51f121ac3d53eec22c9e1 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Mon, 15 Jul 2024 10:00:34 +0200 Subject: rest: add default value to og_set_client_mode vga field Define a default value of 788 for the vga field to assign the value from ogServer instead of modifying it through the legacy script setclientmode. --- src/rest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rest.c b/src/rest.c index d415f0f..2b8fbaf 100644 --- a/src/rest.c +++ b/src/rest.c @@ -1321,10 +1321,10 @@ static int og_set_client_mode(struct og_dbi *dbi, const char *mac, "IF(aulas.dns<>'', CONCAT(' ogdns=', aulas.dns), ''), " "IF(aulas.proxy<>'', CONCAT(' ogproxy=', aulas.proxy), ''), " "IF(entidades.ogunit=1 AND NOT centros.directorio='', CONCAT(' ogunit=', centros.directorio), ''), " - "CASE WHEN menus.resolucion IS NULL THEN '' " + "CASE WHEN menus.resolucion IS NULL THEN ' vga=788' " "WHEN menus.resolucion <= '999' THEN CONCAT(' vga=', menus.resolucion) " "WHEN menus.resolucion LIKE '%:%' THEN CONCAT(' video=', menus.resolucion) " - "ELSE menus.resolucion END " + "ELSE ' vga=788' END " "FROM ordenadores " "JOIN aulas USING(idaula) " -- cgit v1.2.3-18-g5258