ugh
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 24 Feb 2005 20:05:28 +0000 (20:05 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Thu, 24 Feb 2005 20:05:28 +0000 (20:05 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@110 9efc2488-bf62-4759-914b-345cdb29e865

src/libstack/osrf_system.c

index ec310ee..8a43804 100644 (file)
@@ -8,11 +8,13 @@ int osrf_system_bootstrap_client() {
        memset(buf,0,256);
        char* host = getenv("HOSTNAME");
        sprintf(buf, "client_%s_%d", host, getpid() );
-       if(client_connect( client, "system_client","jkjkasdf", buf, 10, AUTH_DIGEST )) {
+
+       if(client_connect( client, "who","hello_you", buf, 10, AUTH_DIGEST )) {
                /* push ourselves into the client cache */
                osrf_system_push_transport_client( client, "client" );
                return 1;
        }
+
        return 0;
 }