Skip to content
Snippets Groups Projects
Commit fcf71908 authored by rswindell's avatar rswindell
Browse files

Fixed bug in OS/2 build of this file.

parent 4949587e
No related branches found
No related tags found
No related merge requests found
...@@ -85,8 +85,8 @@ BOOL read_node_cfg(scfg_t* cfg, char* error) ...@@ -85,8 +85,8 @@ BOOL read_node_cfg(scfg_t* cfg, char* error)
get_str(cfg->node_phone,instream); get_str(cfg->node_phone,instream);
get_str(cfg->node_comspec,instream); get_str(cfg->node_comspec,instream);
#ifdef __OS2__ #ifdef __OS2__
if(!node_comspec[0]) if(!cfg->node_comspec[0])
strcpy(node_comspec,"C:\\OS2\\MDOS\\COMMAND.COM"); strcpy(cfg->node_comspec,"C:\\OS2\\MDOS\\COMMAND.COM");
#endif #endif
get_int(cfg->node_misc,instream); get_int(cfg->node_misc,instream);
get_int(cfg->node_ivt,instream); get_int(cfg->node_ivt,instream);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment