diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-08-06 17:14:13 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-08-06 17:18:06 +0200 |
commit | 5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579 (patch) | |
tree | 9f2d8b4460cda182e5faf986e58697ac1209281b /plugins/xB/script | |
parent | 50057d5149dda340b3b47aca4096f4a6ec66b9ee (diff) | |
download | xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.tar.gz xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.tar.xz xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.zip |
xB: fix up the special IPC command's name
To reflect the new disorder.
Diffstat (limited to 'plugins/xB/script')
-rwxr-xr-x | plugins/xB/script | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/xB/script b/plugins/xB/script index 948e7e5..43bd66f 100755 --- a/plugins/xB/script +++ b/plugins/xB/script @@ -1964,12 +1964,12 @@ read_message (void) // --- Interfacing with the bot ------------------------------------------------ -#define BOT_PRINT "ZYKLONB print :script: " +#define BOT_PRINT "XB print :script: " static const char * get_config (const char *key) { - printf ("ZYKLONB get_config :%s\r\n", key); + printf ("XB get_config :%s\r\n", key); struct message *msg = read_message (); if (!msg || msg->n_params <= 0) exit (EXIT_FAILURE); @@ -2298,7 +2298,7 @@ main (int argc, char *argv[]) printf (BOT_PRINT "%s\r\n", "runtime library initialization failed"); g_prefix = strdup (get_config ("prefix")); - printf ("ZYKLONB register\r\n"); + printf ("XB register\r\n"); struct message *msg; while ((msg = read_message ())) process_message (msg); |