From 16fca542d7f3b05f3d97cdab34c5f1907bd0a170 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 8 Apr 2008 19:54:57 +0200 Subject: Move is_valid_policy_hnd() out of net. Guenther (This used to be commit aae4d91e726ef8dcad173cdd1d6f719d94462948) --- source3/lib/util.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/lib/util.c') diff --git a/source3/lib/util.c b/source3/lib/util.c index 00062b82a9..b52cc692a2 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3367,3 +3367,11 @@ NTSTATUS split_ntfs_stream_name(TALLOC_CTX *mem_ctx, const char *fname, } return NT_STATUS_OK; } + +bool is_valid_policy_hnd(const POLICY_HND *hnd) +{ + POLICY_HND tmp; + ZERO_STRUCT(tmp); + return (memcmp(&tmp, hnd, sizeof(tmp)) != 0); +} + -- cgit