1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

dbwrap_tool: We don't do "listwatchers" anymore

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Mon Sep  3 21:38:40 CEST 2018 on sn-devel-144
This commit is contained in:
Volker Lendecke 2018-08-24 15:11:53 +02:00 committed by Ralph Boehme
parent 0ce26c75cb
commit 05e618cbaf

View File

@ -25,7 +25,6 @@
#include "popt_common.h" #include "popt_common.h"
#include "dbwrap/dbwrap.h" #include "dbwrap/dbwrap.h"
#include "dbwrap/dbwrap_open.h" #include "dbwrap/dbwrap_open.h"
#include "dbwrap/dbwrap_watch.h"
#include "messages.h" #include "messages.h"
#include "util_tdb.h" #include "util_tdb.h"
@ -429,7 +428,7 @@ int main(int argc, const char **argv)
"USAGE: %s [options] <database> <op> [<key> [<type> " "USAGE: %s [options] <database> <op> [<key> [<type> "
"[<value>]]]\n" "[<value>]]]\n"
" ops: fetch, store, delete, exists, " " ops: fetch, store, delete, exists, "
"erase, listkeys, listwatchers\n" "erase, listkeys\n"
" types: int32, uint32, string, hex\n", " types: int32, uint32, string, hex\n",
argv[0]); argv[0]);
goto done; goto done;
@ -501,7 +500,7 @@ int main(int argc, const char **argv)
d_fprintf(stderr, d_fprintf(stderr,
"ERROR: invalid op '%s' specified\n" "ERROR: invalid op '%s' specified\n"
" supported ops: fetch, store, delete, exists, " " supported ops: fetch, store, delete, exists, "
"erase, listkeys, listwatchers\n", "erase, listkeys\n",
opname); opname);
goto done; goto done;
} }