summaryrefslogtreecommitdiff
path: root/ace/Svc_Conf.l
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commita7c03cabf931b077d70c6f80ec02c7728a429f49 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Svc_Conf.l
parent2aa7b10780ad7c670f588dce4ec341351a0646aa (diff)
downloadATCD-a7c03cabf931b077d70c6f80ec02c7728a429f49.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Svc_Conf.l')
-rw-r--r--ace/Svc_Conf.l8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Svc_Conf.l b/ace/Svc_Conf.l
index 5197676144f..17b4f1d03ea 100644
--- a/ace/Svc_Conf.l
+++ b/ace/Svc_Conf.l
@@ -17,7 +17,7 @@ int yyerrno = 0;
// Used to parse service configurator directives from a string rather
// than from a svc.conf file.
-const ASYS_TCHAR *yydirective = 0;
+const ACE_TCHAR *yydirective = 0;
#define token(x) x
%}
@@ -81,10 +81,10 @@ inactive { return token (ACE_INACTIVE); }
}
{white_space}+ ; /* EMPTY */
{newline} { yylineno++; }
-{other} { ACE_ERROR ((LM_ERROR, "unknown character = (%d", *yytext));
+{other} { ACE_ERROR ((LM_ERROR, ACE_TEXT ("unknown character = (%d"), *yytext));
if (isprint (*yytext))
- ACE_ERROR ((LM_ERROR, "|%c", *yytext));
- ACE_ERROR ((LM_ERROR, ")\n"));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("|%c"), *yytext));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT (")\n")));
}
<<EOF>> { YY_NEW_FILE; yyterminate(); }
%%