summaryrefslogtreecommitdiff
path: root/source3/utils/net_registry.c
AgeCommit message (Collapse)AuthorFilesLines
2010-07-02s3-registry: avoid using registry_value union.Günther Deschner1-7/+33
Just pull and push data as is. Guenther
2010-05-25s3:registry: move prototype registry_create_admin_token() to new header ↵Michael Adam1-0/+1
reg_util_token.h and use it only where necessary.
2010-05-18s3-registry: only include registry headers when really needed.Günther Deschner1-1/+1
Guenther
2010-04-27s3: use shared registry functions.Günther Deschner1-1/+1
Guenther
2010-03-12s3: Add "net registry increment"Volker Lendecke1-0/+105
A convenience function to increment a DWORD value under a (cluster-wide) lock
2010-03-12s3: Fix some "net registry" usage messagesVolker Lendecke1-3/+3
2010-03-03s3:net: add a command "net registry setsd_sdd"Michael Adam1-0/+88
This permits to set the security descriptor of a registry key from the unix command line. Michael
2010-03-03s3:net: fix some i18n messages in net_registry_getsd_internal().Michael Adam1-2/+3
Michael
2010-03-03s3:net: add i18n macro _() to one messageMichael Adam1-1/+1
Michael
2010-03-03s3:net: add new subcommand "net registry getsd_sddl" to print secdesc in ↵Michael Adam1-0/+40
sddl format Michael
2010-03-03s3:net: refactor getting of secdesc out of net_registry_getsd()Michael Adam1-14/+42
New net_registry_getsd_internal does the work(), net_registry_getsd() just prints the result. This in preparation to add support for other output formats than the currently used display_sec_desc(). Michael
2010-01-19s3 net: Fix compile warningsKai Blin1-20/+38
2010-01-19s3 net/i18n: Use only one spelling for "Usage:"Kai Blin1-3/+3
2010-01-18s3/net: split up some printable stings to ease i18nBjörn Jacke1-14/+14
If we put strings like "Usage:" into separate _() macros and not the whole "Usage:..." string we can cover much more messages by only one single translation. The drawback is that the message in the sources looks less pretty.
2009-08-07s3 net: i18n support for net registryKai Blin1-64/+67
2009-04-21s3-secdesc: use SEC_FLAG_SYSTEM_SECURITY instead of SEC_RIGHT_SYSTEM_SECURITY.Günther Deschner1-2/+2
Guenther
2009-04-21s3-secdesc: use SEC_FLAG_MAXIMUM_ALLOWED instead of SEC_RIGHT_MAXIMUM_ALLOWED.Günther Deschner1-1/+1
Guenther
2008-12-02Implement type multi_sz for "net registry setvalue"Volker Lendecke1-0/+4
2008-11-01Rename dos_errstr() to win_errstr() for consistency with Samba 4.Jelmer Vernooij1-15/+15
2008-06-10net: Rename functable3 to functable, get rid of old functablesKai Blin1-2/+2
(This used to be commit bb7c5fc4ec77db4073d3beccf12af12910b6bd07)
2008-06-10net: Make "net registry" use functable3Kai Blin1-16/+40
(This used to be commit 47f7308e4ee7422a6d9c578c1073b0207969fbb2)
2008-05-15net registry: add a getvalueraw command to print the value in raw format.Michael Adam1-0/+11
Michael (This used to be commit b7e8a3f1caf54145d750209f2e14b5b54c61769b)
2008-05-15net registry: refactor core of net_registry_getvalue() outMichael Adam1-3/+9
into net_registry_getvalue_internal(), which takes a bool parameter "raw" controlling the output format. Michael (This used to be commit 889e19303e141e226898f837a637a2d591c75ad9)
2008-05-15net_registry: add raw output of value to print_registry_value().Michael Adam1-1/+1
Michael (This used to be commit 340a706422cbca45cc63fa94d36c88f6751f4f31)
2008-05-10net: Remove globalsKai Blin1-9/+16
(This used to be commit 1e9319cf88b65a2a8d4f5099a1fe5297e405ed2e)
2008-04-13net registry: remove superfluous regdb_close().Michael Adam1-2/+0
Michael (This used to be commit d4e74036d3b8c5de4ce130eab7fc775e3cb746d5)
2008-04-13registry: change registry_init_basic() to return WERROR instead of boolMichael Adam1-1/+1
Michael (This used to be commit 6a31e659cb371395dff0906786f3c6ef0cc2b3de)
2008-04-09net registry: add a getvalue subcommand that prints a single given value.Michael Adam1-0/+41
usage: "net registry getvalue <keyname> <valuename>" Michael (This used to be commit 77f049943e133986dc47d25fff2415def1cec32f)
2008-04-09net (registry util): refactor printing of value without name out.Michael Adam1-1/+1
This renames print_registry_value() to print_registry_value_with_name(). The new function is called print_registry_value(). Michael (This used to be commit 88c4851ad7240bc4f72a5ef92e21629e6a4c99c6)
2008-04-04net: change split_hive_key() to properly allocate subkeynameMichael Adam1-1/+1
instead of returning a pointer into another string. Michael (This used to be commit 68d08ecf92be3444b759300237b2b7cf5238d022)
2008-04-04net_registry: split utility function of common interest out into util module.Michael Adam1-87/+1
Michael (This used to be commit 3bf890783fadd245c59280173627a6caca2dbefe)
2008-03-29Fix a segfault (an uninitialized variable)Volker Lendecke1-3/+3
(This used to be commit 75eb30884a83266fd7331d8f1e3905a0245bb3d8)
2008-03-28net: add a "net registry" subcommand to locally access the registry.Michael Adam1-0/+530
The interface is like that of net rpc registry. Access is direct local access to the registry tdb through reg_api. Michael (This used to be commit 3250068eb980bd0489f814f702401cdc9c925a8d)