summaryrefslogtreecommitdiff
path: root/ACE/ace/Svc_Conf.y
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-12-16 06:49:58 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-12-16 06:49:58 +0000
commit9876c459c27beb724d6caf1096f0385f4cf3b22e (patch)
tree21c37c5e6df1da2996531d4e6090dc604bf1f3d5 /ACE/ace/Svc_Conf.y
parent02078796124c2311aaeb5409117be851fa7a8226 (diff)
downloadATCD-9876c459c27beb724d6caf1096f0385f4cf3b22e.tar.gz
Sun Dec 16 06:49:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Svc_Conf.y')
-rw-r--r--ACE/ace/Svc_Conf.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Svc_Conf.y b/ACE/ace/Svc_Conf.y
index 87e44928bc2..6b8ee2a1ad7 100644
--- a/ACE/ace/Svc_Conf.y
+++ b/ACE/ace/Svc_Conf.y
@@ -63,7 +63,7 @@ svc_config_entries
{
if ($2 != 0)
{
- $2->apply (ACE_SVC_CONF_PARAM->config, ACE_SVC_CONF_PARAM->yyerrno);
+ $2->apply (ACE_SVC_CONF_PARAM->config, ACE_SVC_CONF_PARAM->yyerrno);
delete $2;
}
ACE_SVC_CONF_PARAM->obstack.release ();
@@ -404,13 +404,13 @@ ace_get_module (ACE_Service_Type const * sr,
return const_cast<ACE_Module_Type *> (mt);
}
-#if defined (DEBUGGING)
+#if defined (SVC_CONF_Y_DEBUGGING)
// Main driver program.
int
main (int argc, char *argv[])
{
- ACE_Svc_Conf_Param param (stdin);
+ ACE_Svc_Conf_Param param (0, stdin);
// Try to reopen any filename argument to use YYIN.
if (argc > 1 && (yyin = freopen (argv[1], "r", stdin)) == 0)
@@ -418,7 +418,7 @@ main (int argc, char *argv[])
return ::yyparse (&param);
}
-#endif /* DEBUGGING */
+#endif /* SVC_CONF_Y_DEBUGGING */
ACE_END_VERSIONED_NAMESPACE_DECL