+Tue Apr 18 17:11:56 1995 Keith Vetter (keithv@fusion.com)
+
+ * telnet.c: bug fix with saving/restoring delete versus backspace.
+
Fri Apr 7 15:14:07 1995 Keith Vetter (keithv@fusion.com)
* telnet.c, wt-proto.h: port numbers better supported. You can
GetPrivateProfileString(INI_HOSTS, INI_HOST "0", "", buf, 128,
TELNET_INI);
tmpCommaLoc = strchr(buf, ',');
+ if (tmpCommaLoc == NULL) {
+ strcat (buf, ",");
+ tmpCommaLoc = strchr(buf, ',');
+ }
if (tmpCommaLoc) {
tmpCommaLoc++;
if (con->backspace == VK_BACK)
}
if (comma) {
+ ++comma; // Past the comma
while (*comma == ' ') // Past leading white space
++comma;
bs = VK_BACK; // Default for unknown entry