s3:lib: Add FALL_THROUGH statements in util_sd.c
[sfrench/samba-autobuild/.git] / source3 / registry / reg_backend_shares.c
index 22b8fd7ed28bb18df3512cd36b9e12236f6f4394..ffe95a6582d33ad561e68e87117a6f34a58db7dc 100644 (file)
 /* Implementation of registry virtual views for printing information */
 
 #include "includes.h"
+#include "registry.h"
+#include "reg_objects.h"
 
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_REGISTRY
 
 /**********************************************************************
- It is safe to assume that every registry path passed into on of 
+ It is safe to assume that every registry path passed into one of
  the exported functions here begins with KEY_SHARES else
  these functions would have never been called.  This is a small utility
- function to strip the beginning of the path and make a copy that the 
+ function to strip the beginning of the path and make a copy that the
  caller can modify.  Note that the caller is responsible for releasing
  the memory allocated here.
  **********************************************************************/
@@ -36,7 +38,7 @@
 static char* trim_reg_path( const char *path )
 {
        const char *p;
-       uint16 key_len = strlen(KEY_SHARES);
+       uint16_t key_len = strlen(KEY_SHARES);
 
        /* 
         * sanity check...this really should never be True.
@@ -71,7 +73,7 @@ static int shares_subkey_info( const char *key, struct regsubkey_ctr *subkey_ctr
        bool            top_level = False;
        int             num_subkeys = 0;
 
-       DEBUG(10,("printing_subkey_info: key=>[%s]\n", key));
+       DEBUG(10, ("shares_subkey_info: key=>[%s]\n", key));
 
        path = trim_reg_path( key );
 
@@ -105,7 +107,7 @@ static int shares_value_info(const char *key, struct regval_ctr *val)
        bool            top_level = False;
        int             num_values = 0;
 
-       DEBUG(10,("printing_value_info: key=>[%s]\n", key));
+       DEBUG(10, ("shares_value_info: key=>[%s]\n", key));
 
        path = trim_reg_path( key );
 
@@ -129,7 +131,7 @@ static int shares_value_info(const char *key, struct regval_ctr *val)
 
 /**********************************************************************
  Stub function which always returns failure since we don't want
- people storing printing information directly via regostry calls
+ people storing share information directly via registry calls
  (for now at least)
  *********************************************************************/
 
@@ -140,7 +142,7 @@ static bool shares_store_subkey( const char *key, struct regsubkey_ctr *subkeys
 
 /**********************************************************************
  Stub function which always returns failure since we don't want
- people storing printing information directly via regostry calls
+ people storing share information directly via registry calls
  (for now at least)
  *********************************************************************/