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

Move libcli-util error code to top-level.

This commit is contained in:
Jelmer Vernooij 2008-10-23 03:11:19 +02:00
parent 52923c4ff4
commit 3be0f6ea56
8 changed files with 2 additions and 4 deletions

View File

@ -5,9 +5,9 @@ mkinclude wbclient/config.mk
[SUBSYSTEM::LIBSAMBA-ERRORS]
LIBSAMBA-ERRORS_OBJ_FILES = $(addprefix $(libclisrcdir)/util/, doserr.o errormap.o nterr.o)
LIBSAMBA-ERRORS_OBJ_FILES = $(addprefix ../libcli/util/, doserr.o errormap.o nterr.o)
PUBLIC_HEADERS += $(addprefix $(libclisrcdir)/, util/error.h util/ntstatus.h util/doserr.h util/werror.h)
PUBLIC_HEADERS += $(addprefix ../libcli/util/, util/error.h util/ntstatus.h util/doserr.h util/werror.h)
[SUBSYSTEM::LIBCLI_LSA]
PUBLIC_DEPENDENCIES = RPC_NDR_LSA

View File

@ -268,9 +268,7 @@ struct torture_suite *torture_rpc_epmapper(TALLOC_CTX *mem_ctx)
&ndr_table_epmapper);
torture_rpc_tcase_add_test(tcase, "Lookup", test_Lookup);
torture_rpc_tcase_add_test(tcase, "Insert", test_Insert);
torture_rpc_tcase_add_test(tcase, "InqObject", test_InqObject);
return suite;