r10961: remove unused variables (patch from Jason Mader)
authorGerald Carter <jerry@samba.org>
Thu, 13 Oct 2005 13:20:26 +0000 (13:20 +0000)
committerGerald Carter <jerry@samba.org>
Thu, 13 Oct 2005 13:20:26 +0000 (13:20 +0000)
source/services/services_db.c

index e1b2f888651dfc0ead3ca5f2914b287e504237f3..9cd9ba8d83f228e6a54d9a185fb6d6506e35b879 100644 (file)
@@ -175,7 +175,7 @@ static BOOL read_init_file( const char *servicename, struct rcinit_file_informat
        struct rcinit_file_information *info;
        pstring filepath, str;
        XFILE *f;
-       char *p, *s;
+       char *p;
                
        if ( !(info = TALLOC_ZERO_P( NULL, struct rcinit_file_information ) ) )
                return False;
@@ -189,7 +189,7 @@ static BOOL read_init_file( const char *servicename, struct rcinit_file_informat
                return False;
        }
        
-       while ( (s = x_fgets( str, sizeof(str)-1, f )) != NULL ) {
+       while ( (x_fgets( str, sizeof(str)-1, f )) != NULL ) {
                /* ignore everything that is not a full line 
                   comment starting with a '#' */
                   
@@ -400,7 +400,6 @@ void svcctl_init_keys( void )
        REGSUBKEY_CTR *subkeys;
        REGISTRY_KEY *key = NULL;
        WERROR wresult;
-       BOOL new_services = False;
        
        /* bad mojo here if the lookup failed.  Should not happen */
        
@@ -437,8 +436,6 @@ void svcctl_init_keys( void )
                /* Add the new service key and initialize the appropriate values */
 
                add_new_svc_name( key, subkeys, service_list[i] );
-
-               new_services = True;
        }
 
        regkey_close_internal( key );