ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/conf_lexer.l
(Generate patch)

Comparing ircd-hybrid-8/src/ircd_lexer.l (file contents):
Revision 1242 by michael, Mon Sep 19 09:38:38 2011 UTC vs.
Revision 1243 by michael, Fri Sep 30 10:47:53 2011 UTC

# Line 30 | Line 30
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"
# Line 246 | Line 245 | network_desc    { return NETWORK_DESC; }
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; }
# Line 319 | Line 318 | vhost  { return VHOST; }
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; }

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)