summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/standard_ports.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/zwgc/standard_ports.c b/zwgc/standard_ports.c
index 1d228d3..22a7166 100644
--- a/zwgc/standard_ports.c
+++ b/zwgc/standard_ports.c
@@ -214,8 +214,11 @@ void init_standard_ports(pargc, argv)
} else if (string_Eq((string) *current, "-ttymode")) {
default_port = (string) "tty";
(*pargc)--;
- if (p = get_standard_port_info(default_port))
+ if (p = get_standard_port_info(default_port)) {
p->port_setup_status = DEFAULT_OK;
+ if (p = get_standard_port_info ((string) "X"))
+ p->port_setup_status = DISABLED;
+ }
} else
*(new++) = *current;
}