1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

s3: Fix the build without ADS

This commit is contained in:
Volker Lendecke 2010-08-08 16:46:48 +02:00
parent cc280f0cd1
commit 9a4ac5b2d3

View File

@ -453,19 +453,21 @@ done:
#else #else
WERROR nt_printer_publish(TALLOC_CTX *mem_ctx, WERROR nt_printer_publish(TALLOC_CTX *mem_ctx,
struct auth_serversupplied_info *server_info, struct auth_serversupplied_info *server_info,
struct messaging_context *msg_ctx,
struct spoolss_PrinterInfo2 *pinfo2, struct spoolss_PrinterInfo2 *pinfo2,
int action) int action)
{ {
return WERR_OK; return WERR_OK;
} }
WERROR check_published_printers(void) WERROR check_published_printers(struct messaging_context *msg_ctx)
{ {
return WERR_OK; return WERR_OK;
} }
bool is_printer_published(TALLOC_CTX *mem_ctx, bool is_printer_published(TALLOC_CTX *mem_ctx,
struct auth_serversupplied_info *server_info, struct auth_serversupplied_info *server_info,
struct messaging_context *msg_ctx,
char *servername, char *printer, struct GUID *guid, char *servername, char *printer, struct GUID *guid,
struct spoolss_PrinterInfo2 **info2) struct spoolss_PrinterInfo2 **info2)
{ {