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

Bugfix: telnet debug output of received window size was logging wrong variables

(not SyncTerm's fault!).
parent 40d8fae5
No related branches found
No related tags found
No related merge requests found
......@@ -1025,8 +1025,8 @@ static BYTE* telnet_interpret(sbbs_t* sbbs, BYTE* inbuf, int inlen,
lprintf(LOG_DEBUG,"Node %d %s telnet window size: %ux%u"
,sbbs->cfg.node_num
,sbbs->telnet_mode&TELNET_MODE_GATE ? "passed-through" : "received"
,sbbs->cols
,sbbs->rows);
,cols
,rows);
if(rows && !sbbs->useron.rows) /* auto-detect rows */
sbbs->rows=rows;
if(cols)
......
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