Navigation


Changeset 1057:1c6c8fa622ff in freeDiameter for extensions/acl_wl/aw_conf.y


Ignore:
Timestamp:
Apr 29, 2013, 1:43:41 PM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Children:
1058:5d37c0db6cbf, 1060:13fc3fc9c789
Phase:
public
Message:

Use yylval to make gcc happy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/acl_wl/aw_conf.y

    r974 r1057  
    111111%}
    112112
     113/* Values returned by lex for token */
     114%union {
     115        char             *string;
     116}
     117
    113118/* In case of error in the lexical analysis */
    114119%token          LEX_ERROR
    115120
    116121/* Key words */
    117 %token          FQDN
     122%token <string> FQDN
    118123
    119124
     
    126131                        {
    127132                                fqdn_added++;
     133                                TRACE_DEBUG(FULL, "Added FQDN: %s", $2);
    128134                        }
    129135                        | conffile LEX_ERROR
Note: See TracChangeset for help on using the changeset viewer.