mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-22 21:40:19 +00:00
Fix SysInfo displaying garbage for too long lines
This commit is contained in:
@@ -237,7 +237,7 @@ print_summary (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", sysinfo);
|
xchat_commandf (ph, "SAY %s", sysinfo);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -266,7 +266,7 @@ print_os (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", buffer);
|
xchat_commandf (ph, "SAY %s", buffer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -291,7 +291,7 @@ print_distro (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", name);
|
xchat_commandf (ph, "SAY %s", name);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -336,7 +336,7 @@ print_cpu (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", buffer);
|
xchat_commandf (ph, "SAY %s", buffer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -371,7 +371,7 @@ print_ram (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", string);
|
xchat_commandf (ph, "SAY %s", string);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -415,7 +415,7 @@ print_disk (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", string);
|
xchat_commandf (ph, "SAY %s", string);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -452,7 +452,7 @@ print_vga (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", buffer);
|
xchat_commandf (ph, "SAY %s", buffer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -477,7 +477,7 @@ print_sound (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", sound);
|
xchat_commandf (ph, "SAY %s", sound);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -502,11 +502,11 @@ print_ethernet (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf(ph, "ME %s", ethernet_card);
|
xchat_commandf (ph, "SAY %s", ethernet_card);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
xchat_printf(ph, "%s", ethernet_card);
|
xchat_printf (ph, "%s", ethernet_card);
|
||||||
}
|
}
|
||||||
|
|
||||||
return XCHAT_EAT_ALL;
|
return XCHAT_EAT_ALL;
|
||||||
@@ -558,7 +558,7 @@ print_uptime (int announce, char* format)
|
|||||||
|
|
||||||
if (announce)
|
if (announce)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", buffer);
|
xchat_commandf (ph, "SAY %s", buffer);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -597,7 +597,7 @@ netdata_cb (char *word[], char *word_eol[], void *userdata)
|
|||||||
|
|
||||||
if (xchat_list_int (ph, NULL, "type") >= 2)
|
if (xchat_list_int (ph, NULL, "type") >= 2)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", netdata);
|
xchat_commandf (ph, "SAY %s", netdata);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -670,7 +670,7 @@ netstream_cb (char *word[], char *word_eol[], void *userdata)
|
|||||||
|
|
||||||
if (xchat_list_int (ph, NULL, "type") >= 2)
|
if (xchat_list_int (ph, NULL, "type") >= 2)
|
||||||
{
|
{
|
||||||
xchat_commandf (ph, "ME %s", netstream);
|
xchat_commandf (ph, "SAY %s", netstream);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user