ossp-pkg/rc/rc.c 1.41 -> 1.42
--- rc.c 2002/08/01 11:59:55 1.41
+++ rc.c 2003/07/01 13:26:25 1.42
@@ -47,15 +47,15 @@
catch(Except) /* Exceptions of the configuration block */
rcError(Except);
- try { /* Main processing block, script built here */
+ try { /* Main processing block, script built */
rc_proc_t *pProc = NULL;
- pProc = procNew(); /* Construct a new processor, build script */
- procPopulate(pProc); /* Populate with run commands */
- procRun(pProc); /* [Execute|Evaluate|Print] script */
- procDelete(pProc); /* Destroy the processor */
- configDelete(); /* Destroy the configuration */
+ pProc = procNew(); /* Construct a new processor */
+ procPopulate(pProc); /* Populate with run commands */
+ procRun(pProc); /* [Execute|Evaluate|Print] script */
+ procDelete(pProc); /* Destroy the processor */
+ configDelete(); /* Destroy the configuration */
}
- catch(Except) /* Exception thrown while script processing */
+ catch(Except) /* Exceptions while script processing */
rcError(Except);
exit(0); /* Return success */
|
|