1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 13:23:12 +02:00

Merge branch 'anopeng' into anopeng-uid

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1394 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-10-03 00:11:57 +00:00
parent b10521f610
commit 797bdccb9b
+5 -4
View File
@@ -126,6 +126,7 @@
# include <mysql/mysql.h>
# include <mysql/errmsg.h>
#else
# define NO_CLIENT_LONG_LONG
# include <mysql.h>
# include <errmsg.h>
#endif
@@ -401,7 +402,7 @@ struct ircdcapab_ {
/* Configuration directives */
typedef struct {
char *name;
const char *name;
struct {
int type; /* PARAM_* below */
int flags; /* Same */
@@ -772,8 +773,8 @@ struct chaninfo_ {
/* ChanServ mode utilities commands */
struct csmodeutil_ {
char *name; /* Name of the ChanServ command */
char *bsname; /* Name of the BotServ fantasy command */
const char *name; /* Name of the ChanServ command */
const char *bsname; /* Name of the BotServ fantasy command */
char *mode; /* Mode (ie. +o) */
int32 notice; /* Notice flag (for the damn OPNOTICE) */
int level; /* Level required to use the command */
@@ -782,7 +783,7 @@ struct csmodeutil_ {
typedef struct {
int what;
char *name;
const char *name;
int desc;
} LevelInfo;