diff --git a/src/bin/ubistry/db.c b/src/bin/ubistry/db.c index 7a4a647..db47c4b 100644 --- a/src/bin/ubistry/db.c +++ b/src/bin/ubistry/db.c @@ -32,7 +32,7 @@ #include #include "./include/ubistry.h" -struct ubistryKey *keys = 0x0; +static struct ubistryKey *keys = 0x0; struct ubistryKey * ubistryFindKey(char *name) { @@ -69,5 +69,9 @@ /*** $Log$ + Revision 1.1 2004/05/26 15:41:20 reddawg + ubistry: added command 666 which will restart the registry server also added + command 51 to add a key format key,value + END ***/ diff --git a/src/bin/ubistry/main.c b/src/bin/ubistry/main.c index 1e3f02c..4f1d41f 100644 --- a/src/bin/ubistry/main.c +++ b/src/bin/ubistry/main.c @@ -35,10 +35,10 @@ #include "./include/ubistry.h" int main(int argc,char **argv) { - FILE *pidFile; + //FILE *pidFile; if (fork() != 0x0) { - sched_yield(); + //sched_yield(); exit(0x0); } @@ -57,6 +57,9 @@ /*** $Log$ + Revision 1.6 2004/06/10 13:08:00 reddawg + Minor Bug Fixes + Revision 1.5 2004/06/01 01:30:43 reddawg No more warnings and organized make files