From 1da87fc988d0660f9c868ec9350664a3f7f51942 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 13 Feb 2010 13:01:22 +1100 Subject: [PATCH] s4-wrepl: use TYPESAFE_QSORT() in wins repl code --- source4/wrepl_server/wrepl_in_call.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/wrepl_server/wrepl_in_call.c b/source4/wrepl_server/wrepl_in_call.c index a4f18ff2da4..fd09bbaf401 100644 --- a/source4/wrepl_server/wrepl_in_call.c +++ b/source4/wrepl_server/wrepl_in_call.c @@ -30,6 +30,7 @@ #include "lib/ldb/include/ldb.h" #include "lib/ldb/include/ldb_errors.h" #include "system/time.h" +#include "lib/util/tsort.h" static NTSTATUS wreplsrv_in_start_association(struct wreplsrv_in_call *call) { @@ -300,7 +301,7 @@ static NTSTATUS wreplsrv_in_send_request(struct wreplsrv_in_call *call) } /* sort the names before we send them */ - qsort(names, j, sizeof(struct wrepl_wins_name), (comparison_fn_t)wreplsrv_in_sort_wins_name); + TYPESAFE_QSORT(names, j, wreplsrv_in_sort_wins_name); DEBUG(2,("WINSREPL:reply [%u] records owner[%s] min[%llu] max[%llu] to partner[%s]\n", j, owner_in->address, -- 2.11.4.GIT