Skip to content
Snippets Groups Projects
Commit 493b99a7 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Remove exascii literals.

Replace with \xXX values
parent 1d0ab60f
Branches
Tags
No related merge requests found
Pipeline #8258 passed
...@@ -135,7 +135,7 @@ size_t sbbs_t::getstr(char *strout, size_t maxlen, int mode, const str_list_t hi ...@@ -135,7 +135,7 @@ size_t sbbs_t::getstr(char *strout, size_t maxlen, int mode, const str_list_t hi
if (!i && (mode & (K_UPRLWR | K_TRIM)) && (ch == ' ' || ch == TAB)) if (!i && (mode & (K_UPRLWR | K_TRIM)) && (ch == ' ' || ch == TAB))
continue; /* ignore beginning white space if upper/lower */ continue; /* ignore beginning white space if upper/lower */
if (mode & K_E71DETECT && (uchar)ch == (CR | 0x80) && l > 1) { if (mode & K_E71DETECT && (uchar)ch == (CR | 0x80) && l > 1) {
if (strstr(str1, "")) { if (strstr(str1, "\x8d\x8d")) {
bputs("\r\n\r\nYou must set your terminal to NO PARITY, " bputs("\r\n\r\nYou must set your terminal to NO PARITY, "
"8 DATA BITS, and 1 STOP BIT (N-8-1).\7\r\n"); "8 DATA BITS, and 1 STOP BIT (N-8-1).\7\r\n");
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment