diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-10-17 06:14:09 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-10-17 06:14:09 +0000 |
commit | 00e04653fed75db26a50c3b2dd4ed4e3f93b5012 (patch) | |
tree | 48c51aedaa1eac4cde2b6d23b85109e7bfa3535e /ace/Svc_Conf.l | |
parent | 61136fb2f12ae83458e9110367857ba31972c200 (diff) | |
download | ATCD-00e04653fed75db26a50c3b2dd4ed4e3f93b5012.tar.gz |
ChangeLogTag:Tue Oct 16 23:08:27 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace/Svc_Conf.l')
-rw-r--r-- | ace/Svc_Conf.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Svc_Conf.l b/ace/Svc_Conf.l index 5c9d283c0f1..bb1f3e2dc0c 100644 --- a/ace/Svc_Conf.l +++ b/ace/Svc_Conf.l @@ -66,18 +66,18 @@ inactive { return token (ACE_INACTIVE); } // single quotes. *s = '\0'; yyleng -= 1; - yylval->ident_ = ace_obstack->copy (yytext + 1, yyleng); + yylval->ident_ = ACE_SVC_CONF_PARAM->obstack.copy (yytext + 1, yyleng); return token (ACE_STRING); } {ident} { - yylval->ident_ = ace_obstack->copy (yytext, yyleng); + yylval->ident_ = ACE_SVC_CONF_PARAM->obstack.copy (yytext, yyleng); return token (ACE_IDENT); } {pathname} { - yylval->ident_ = ace_obstack->copy (yytext, yyleng); + yylval->ident_ = ACE_SVC_CONF_PARAM->obstack.copy (yytext, yyleng); return token (ACE_PATHNAME); } {white_space}+ ; /* EMPTY */ -{newline} { ace_lexer_param->yylineno++; } +{newline} { ACE_SVC_CONF_PARAM->yylineno++; ace_yylineno++; } {other} { ACE_ERROR ((LM_ERROR, ACE_LIB_TEXT ("unknown character = (%d"), |