From: Günther Deschner Date: Tue, 1 Jul 2008 18:09:09 +0000 (+0200) Subject: util: add policy_hnd_equal(). X-Git-Tag: samba-3.3.0pre1~538 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6aca163e898bfeeff824725bb27b2ef4f7b729f9;p=thirdparty%2Fsamba.git util: add policy_hnd_equal(). Guenther --- diff --git a/source/include/proto.h b/source/include/proto.h index 03d203b96e3..3c3d5018df3 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -1408,6 +1408,8 @@ void *talloc_zeronull(const void *context, size_t size, const char *name); NTSTATUS split_ntfs_stream_name(TALLOC_CTX *mem_ctx, const char *fname, char **pbase, char **pstream); bool is_valid_policy_hnd(const POLICY_HND *hnd); +bool policy_hnd_equal(const struct policy_handle *hnd1, + const struct policy_handle *hnd2); const char *strip_hostname(const char *s); /* The following definitions come from lib/util_file.c */ diff --git a/source/lib/util.c b/source/lib/util.c index 8d744a5ae3b..b3462546177 100644 --- a/source/lib/util.c +++ b/source/lib/util.c @@ -3458,6 +3458,16 @@ bool is_valid_policy_hnd(const POLICY_HND *hnd) return (memcmp(&tmp, hnd, sizeof(tmp)) != 0); } +bool policy_hnd_equal(const struct policy_handle *hnd1, + const struct policy_handle *hnd2) +{ + if (!hnd1 || !hnd2) { + return false; + } + + return (memcmp(hnd1, hnd2, sizeof(*hnd1)) == 0); +} + /**************************************************************** strip off leading '\\' from a hostname ****************************************************************/