summaryrefslogtreecommitdiff
path: root/src/irc/bot
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/bot')
-rw-r--r--src/irc/bot/bot-users.c3
-rw-r--r--src/irc/bot/botnet.c4
-rw-r--r--src/irc/bot/botnet.h4
3 files changed, 7 insertions, 4 deletions
diff --git a/src/irc/bot/bot-users.c b/src/irc/bot/bot-users.c
index b38a514b..2a012b66 100644
--- a/src/irc/bot/bot-users.c
+++ b/src/irc/bot/bot-users.c
@@ -18,7 +18,10 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE /* for crypt() */
+#endif
+
#include "module.h"
#include "signals.h"
#include "misc.h"
diff --git a/src/irc/bot/botnet.c b/src/irc/bot/botnet.c
index 190481d1..e1f00bb7 100644
--- a/src/irc/bot/botnet.c
+++ b/src/irc/bot/botnet.c
@@ -37,7 +37,7 @@ void botnet_users_init(void);
GSList *botnets;
-void bot_send_cmd(BOT_REC *bot, char *data)
+void bot_send_cmd(BOT_REC *bot, const char *data)
{
g_return_if_fail(bot != NULL);
g_return_if_fail(data != NULL);
@@ -46,7 +46,7 @@ void bot_send_cmd(BOT_REC *bot, char *data)
net_transmit(bot->handle, "\n", 1);
}
-void bot_send_cmdv(BOT_REC *bot, char *format, ...)
+void bot_send_cmdv(BOT_REC *bot, const char *format, ...)
{
va_list args;
char *str;
diff --git a/src/irc/bot/botnet.h b/src/irc/bot/botnet.h
index da022b22..e8b436d5 100644
--- a/src/irc/bot/botnet.h
+++ b/src/irc/bot/botnet.h
@@ -95,8 +95,8 @@ struct _botnet_rec {
extern GSList *botnets;
-void bot_send_cmd(BOT_REC *bot, char *data);
-void bot_send_cmdv(BOT_REC *bot, char *format, ...);
+void bot_send_cmd(BOT_REC *bot, const char *data);
+void bot_send_cmdv(BOT_REC *bot, const char *format, ...);
/* broadcast a message to everyone in bot network, except for `except_bot'
if it's not NULL. If botnet is NULL, the message is sent to all botnets. */