]> andersk Git - moira.git/blobdiff - lib/mr_init.c
Fix another freeing-memory-we-didn't-malloc bug in AddMachine. This
[moira.git] / lib / mr_init.c
index b2310f32593b52ebe1c45280bd16bfc58b13c971..7a8055a0ae47eb7c48769e9fbcbd75b9a0a91114 100644 (file)
@@ -3,31 +3,31 @@
  *     $Author$
  *     $Header$
  *
- *     Copyright (C) 1987 by the Massachusetts Institute of Technology
+ *     Copyright (C) 1987, 1990 by the Massachusetts Institute of Technology
  *     For copying and distribution information, please see the file
  *     <mit-copyright.h>.
  */
 
 #ifndef lint
 static char *rcsid_sms_init_c = "$Header$";
-#endif lint
+#endif
 
 #include <mit-copyright.h>
-#include "sms_private.h"
+#include "mr_private.h"
 
-int sms_inited = 0;
+int mr_inited = 0;
 
 /* the reference to link_against_the_moira_version_of_gdb is to make
  * sure that this is built with the proper libraries.
  */
-sms_init()
+mr_init()
 {
        extern int link_against_the_moira_version_of_gdb;
-       if (sms_inited) return;
+       if (mr_inited) return;
        
        gdb_init();
        initialize_sms_error_table();
        initialize_krb_error_table();
        link_against_the_moira_version_of_gdb = 0;
-       sms_inited=1;
+       mr_inited=1;
 }
This page took 0.096056 seconds and 4 git commands to generate.