diff options
author | Gerald Carter <jerry@samba.org> | 2005-05-23 16:25:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:57 -0500 |
commit | 81ffb0dbbbd244623507880c323a3c37e2b8dc4d (patch) | |
tree | b70f903ffe38729359c3df04cc7669dbb49dd066 /source/registry/reg_util.c | |
parent | 81c1ac255ebf0adf3bdb96b077a34dcfab1812cf (diff) | |
download | samba-81ffb0dbbbd244623507880c323a3c37e2b8dc4d.tar.gz samba-81ffb0dbbbd244623507880c323a3c37e2b8dc4d.tar.xz samba-81ffb0dbbbd244623507880c323a3c37e2b8dc4d.zip |
r6942: * merging the registry changes back to the 3.0 tree
* removing the testprns tool
Diffstat (limited to 'source/registry/reg_util.c')
-rw-r--r-- | source/registry/reg_util.c | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/source/registry/reg_util.c b/source/registry/reg_util.c new file mode 100644 index 00000000000..9120ce0e0a4 --- /dev/null +++ b/source/registry/reg_util.c @@ -0,0 +1,88 @@ +/* + * Unix SMB/CIFS implementation. + * Virtual Windows Registry Layer (utility functions) + * Copyright (C) Gerald Carter 2002-2005 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +/* Implementation of registry frontend view functions. */ + +#include "includes.h" + +#undef DBGC_CLASS +#define DBGC_CLASS DBGC_RPC_SRV + +/*********************************************************************** + Utility function for splitting the base path of a registry path off + by setting base and new_path to the apprapriate offsets withing the + path. + + WARNING!! Does modify the original string! + ***********************************************************************/ + +BOOL reg_split_path( char *path, char **base, char **new_path ) +{ + char *p; + + *new_path = *base = NULL; + + if ( !path) + return False; + + *base = path; + + p = strchr( path, '\\' ); + + if ( p ) { + *p = '\0'; + *new_path = p+1; + } + + return True; +} + + +/*********************************************************************** + Utility function for splitting the base path of a registry path off + by setting base and new_path to the appropriate offsets withing the + path. + + WARNING!! Does modify the original string! + ***********************************************************************/ + +BOOL reg_split_key( char *path, char **base, char **key ) +{ + char *p; + + *key = *base = NULL; + + if ( !path) + return False; + + *base = path; + + p = strrchr( path, '\\' ); + + if ( p ) { + *p = '\0'; + *key = p+1; + } + + return True; +} + + + |