diff options
Diffstat (limited to 'vchat-protocol.c')
-rwxr-xr-x | vchat-protocol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vchat-protocol.c b/vchat-protocol.c index 4d1f333..a78d587 100755 --- a/vchat-protocol.c +++ b/vchat-protocol.c | |||
@@ -385,7 +385,7 @@ pmnotsent (unsigned char *message) | |||
385 | { | 385 | { |
386 | while(*message && *message!=' ') message++; | 386 | while(*message && *message!=' ') message++; |
387 | snprintf(tmpstr,TMPSTRSIZE,getformatstr(FS_ERR),message+1); | 387 | snprintf(tmpstr,TMPSTRSIZE,getformatstr(FS_ERR),message+1); |
388 | writepriv( tmpstr); | 388 | writepriv( tmpstr, 0); |
389 | 389 | ||
390 | } | 390 | } |
391 | 391 | ||
@@ -935,7 +935,7 @@ parsemsg (unsigned char *message) | |||
935 | str2++; | 935 | str2++; |
936 | if (str2[0] == ' ') str2++; | 936 | if (str2[0] == ' ') str2++; |
937 | snprintf(tmpstr,TMPSTRSIZE,getformatstr(FS_RXPRIVMSG),str1,str2); | 937 | snprintf(tmpstr,TMPSTRSIZE,getformatstr(FS_RXPRIVMSG),str1,str2); |
938 | writepriv (tmpstr); | 938 | writepriv (tmpstr, 1); |
939 | ul_msgfrom(str1); | 939 | ul_msgfrom(str1); |
940 | } | 940 | } |
941 | /* message starts with a number? must be a servermessage */ | 941 | /* message starts with a number? must be a servermessage */ |