diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/outbound.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index cd0cd021..72273a14 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -4308,6 +4308,9 @@ check_special_chars (char *cmd, int do_ascii) /* check for %X */ case 'B': buf[i] = '\002'; break; + case 'I': + buf[i] = '\035'; + break; case 'C': buf[i] = '\003'; break; |