s3:util: remove (now) unused cluster_id_equal()
authorMichael Adam <obnox@samba.org>
Fri, 15 Jun 2012 22:09:24 +0000 (00:09 +0200)
committerStefan Metzmacher <metze@samba.org>
Thu, 21 Jun 2012 06:27:31 +0000 (08:27 +0200)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
source3/include/proto.h
source3/lib/util.c

index a258bf3ab497424ed970aa046fc84e4bfd301b14..64af7c2559af56575b18cd8bc0f889d3e3f3ada7 100644 (file)
@@ -471,8 +471,6 @@ struct server_id pid_to_procid(pid_t pid);
 struct server_id procid_self(void);
 struct server_id *new_server_id_task(TALLOC_CTX *mem_ctx);
 bool procid_equal(const struct server_id *p1, const struct server_id *p2);
-bool cluster_id_equal(const struct server_id *id1,
-                     const struct server_id *id2);
 bool procid_is_me(const struct server_id *pid);
 struct server_id interpret_pid(const char *pid_string);
 char *procid_str_static(const struct server_id *pid);
index 7ba46cfb39e8797c556a1145573acb4b731c932e..2a01e2c9f98d685c832f1519781d30e9a72f31a1 100644 (file)
@@ -2079,12 +2079,6 @@ bool procid_equal(const struct server_id *p1, const struct server_id *p2)
        return true;
 }
 
-bool cluster_id_equal(const struct server_id *id1,
-                     const struct server_id *id2)
-{
-       return procid_equal(id1, id2);
-}
-
 bool procid_is_me(const struct server_id *pid)
 {
        if (pid->pid != getpid())