From 4af8e4a6a37e366194a111f5568540a6c9b7f1a7 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 4 Apr 2003 00:28:38 +0000 Subject: [PATCH] Fixed compiler warning. (This used to be commit 9c706be7b4417a1dc36866c3bad7a156f30b8af6) --- source3/sam/idmap_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/sam/idmap_tdb.c b/source3/sam/idmap_tdb.c index 72c602664c5..ec365b603dd 100644 --- a/source3/sam/idmap_tdb.c +++ b/source3/sam/idmap_tdb.c @@ -264,7 +264,7 @@ static NTSTATUS db_get_sid_from_id(DOM_SID *sid, unid_t id, int id_type) } /* Get an id from a sid */ -static NTSTATUS db_get_id_from_sid(unid_t *id, int *id_type, DOM_SID *sid) +static NTSTATUS db_get_id_from_sid(unid_t *id, int *id_type, const DOM_SID *sid) { TDB_DATA data, key; fstring keystr; -- 2.34.1