| 30 |
|
%{ |
| 31 |
|
#include "stdinc.h" |
| 32 |
|
#include "irc_string.h" |
| 33 |
– |
#include "common.h" |
| 33 |
|
#include "s_conf.h" |
| 34 |
|
#include "memory.h" |
| 35 |
|
#include "hostmask.h" |
| 245 |
|
network_name { return NETWORK_NAME; } |
| 246 |
|
nick { return NICK; } |
| 247 |
|
nick_changes { return NICK_CHANGES; } |
| 248 |
< |
no { yylval.number = NO; return TBOOL; } |
| 248 |
> |
no { yylval.number = 0; return TBOOL; } |
| 249 |
|
no_create_on_split { return NO_CREATE_ON_SPLIT; } |
| 250 |
|
no_join_on_split { return NO_JOIN_ON_SPLIT; } |
| 251 |
|
no_oper_flood { return NO_OPER_FLOOD; } |
| 318 |
|
vhost6 { return VHOST6; } |
| 319 |
|
warn { return WARN; } |
| 320 |
|
xline { return XLINE; } |
| 321 |
< |
yes { yylval.number = YES; return TBOOL; } |
| 321 |
> |
yes { yylval.number = 1; return TBOOL; } |
| 322 |
|
|
| 323 |
|
failed_oper_notice { return FAILED_OPER_NOTICE; } |
| 324 |
|
max_accept { return MAX_ACCEPT; } |