]> source.dussan.org Git - tigervnc.git/commitdiff
Allow empty value for config values
authorLinn Mattsson <linma@cendio.se>
Wed, 9 Oct 2024 14:16:55 +0000 (16:16 +0200)
committerLinn Mattsson <linma@cendio.se>
Wed, 9 Oct 2024 14:31:47 +0000 (16:31 +0200)
Fixed so config variables can pass an empty argument.

Solves issue #1791.

unix/vncserver/vncserver.in

index ebdd3a97eddfe5f4ac0536d1b4ad91ee8846df28..fdcce0e9c4173089fd8f6aa48955f2af015639e3 100755 (executable)
@@ -288,7 +288,7 @@ sub LoadConfig {
     if (open(IN, $configFile)) {
       while (<IN>) {
         next if /^#/;
-        if (my ($k, $v) = /^\s*(\w+)\s*=\s*(.+)$/) {
+        if (my ($k, $v) = /^\s*(\w+)\s*=\s*(.*)$/) {
           $k = lc($k); # must normalize key case
           if ($warnoverride && $config{$k}) {
             print("Warning: $configFile is overriding previously defined '$k' to be '$v'\n");