summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/net_serverid.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/source3/utils/net_serverid.c b/source3/utils/net_serverid.c
index 942f7a49024..0fc7a0118d2 100644
--- a/source3/utils/net_serverid.c
+++ b/source3/utils/net_serverid.c
@@ -46,31 +46,6 @@ static int net_serverid_list(struct net_context *c, int argc,
return serverid_traverse_read(net_serverid_list_fn, NULL) ? 0 : -1;
}
-static int net_serverid_wipe_fn(struct db_record *rec,
- const struct server_id *id,
- uint32_t msg_flags, void *private_data)
-{
- NTSTATUS status;
-
- if (!procid_is_local(id)) {
- return 0;
- }
- status = dbwrap_record_delete(rec);
- if (!NT_STATUS_IS_OK(status)) {
- struct server_id_buf idbuf;
- DEBUG(1, ("Could not delete serverid.tdb record %s: %s\n",
- server_id_str_buf(*id, &idbuf), nt_errstr(status)));
- }
- return 0;
-}
-
-static int net_serverid_wipe(struct net_context *c, int argc,
- const char **argv)
-{
- return serverid_traverse(net_serverid_wipe_fn, NULL) ? 0 : -1;
-}
-
-
struct wipedbs_record_marker {
struct wipedbs_record_marker *prev, *next;
TDB_DATA key, val;
@@ -705,14 +680,6 @@ int net_serverid(struct net_context *c, int argc, const char **argv)
" List all entries from serverid.tdb")
},
{
- "wipe",
- net_serverid_wipe,
- NET_TRANSPORT_LOCAL,
- N_("Wipe the serverid.tdb for the current node"),
- N_("net serverid wipe\n"
- " Wipe the serverid.tdb for the current node")
- },
- {
"wipedbs",
net_serverid_wipedbs,
NET_TRANSPORT_LOCAL,