OSSP CVS Repository

ossp - Check-in [2239]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 2239
Date: 2002-Jul-05 15:27:22 (local)
2002-Jul-05 13:27:22 (UTC)
User:ms
Branch:
Comment: Move code block.
Tickets:
Inspections:
Files:
ossp-pkg/rc/rc_config.c      1.20 -> 1.21     21 inserted, 21 deleted

ossp-pkg/rc/rc_config.c 1.20 -> 1.21

--- rc_config.c  2002/07/01 15:03:33     1.20
+++ rc_config.c  2002/07/05 13:27:22     1.21
@@ -38,6 +38,27 @@
 
 
 /***************************************
+* configNew(void)                      *
+* Construct a configuration            *
+***************************************/
+rc_return_t configNew(void)
+{
+    ex_t Except;
+
+    if (m_nLocks == 0) {                    /* If we don't have one yet */
+        try {                               /* then construct a new one */
+            clioptNew();                    /* Member cliopt instance   */
+        }
+        catch(Except) {
+            rethrow;
+        }
+    }
+    m_nLocks++;                             /* FIXME not threadsafe     */
+
+    return(RC_THROW(RC_OK));
+}
+
+/***************************************
 * configInfo(void)                     *
 * Print the configuration information  *
 ***************************************/
@@ -73,27 +94,6 @@
 
     return(RC_THROW(RC_OK));
 }
-
-/***************************************
-* configNew(void)                      *
-* Construct a configuration            *
-***************************************/
-rc_return_t configNew(void)
-{
-    ex_t Except;
-
-    if (m_nLocks == 0) {                    /* If we don't have one yet */
-        try {                               /* then construct a new one */
-            clioptNew();                    /* Member cliopt instance   */
-        }
-        catch(Except) {
-            rethrow;
-        }
-    }
-    m_nLocks++;                             /* FIXME not threadsafe     */
-
-    return(RC_THROW(RC_OK));
-}
 
 /***************************************
 * configGetXXX(rc_opt_t)               *

CVSTrac 2.0.1