summaryrefslogtreecommitdiff
path: root/source3/lib/util_sid.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-09-08 20:30:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:36 -0500
commit54d3c7f61d612ca041aafc0fba964e0431cbf463 (patch)
treeec8474d9987fec697cb9875ada625e3afb0a4e92 /source3/lib/util_sid.c
parent325b342f313369a8cbd8c7851ddcbe37d8ee4470 (diff)
downloadsamba-54d3c7f61d612ca041aafc0fba964e0431cbf463.tar.gz
samba-54d3c7f61d612ca041aafc0fba964e0431cbf463.tar.bz2
samba-54d3c7f61d612ca041aafc0fba964e0431cbf463.zip
r25040: Add "net sam rights"
Not strictly in the SAM, but close enough. This command acts directly on the local tdb, no running smbd required This also changes the root-only check to a warning (This used to be commit 0c5657b5eff60e3c52de8fbb4ce9346d0341854c)
Diffstat (limited to 'source3/lib/util_sid.c')
-rw-r--r--source3/lib/util_sid.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c
index 7c6fc9b217..85cb96bd60 100644
--- a/source3/lib/util_sid.c
+++ b/source3/lib/util_sid.c
@@ -207,6 +207,13 @@ const char *sid_string_static(const DOM_SID *sid)
return sid_str;
}
+char *sid_string_tos(const DOM_SID *sid)
+{
+ fstring sid_str;
+ sid_to_string(sid_str, sid);
+ return talloc_strdup(talloc_tos(), sid_str);
+}
+
/*****************************************************************
Convert a string to a SID. Returns True on success, False on fail.
*****************************************************************/