1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

lib: Remove "includes.h" from util_file.c

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Volker Lendecke 2016-02-16 17:09:43 +01:00 committed by Michael Adam
parent b4b8c8ca01
commit 3a1685db0b
7 changed files with 43 additions and 12 deletions

View File

@ -449,17 +449,6 @@ bool sid_check_is_builtin(const struct dom_sid *sid);
bool sid_check_is_in_builtin(const struct dom_sid *sid);
bool sid_check_is_wellknown_builtin(const struct dom_sid *sid);
/* The following definitions come from lib/util_file.c */
struct tevent_req *file_pload_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
const char *syscmd, size_t maxsize);
int file_pload_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
uint8_t **buf);
char **file_lines_pload(TALLOC_CTX *mem_ctx, const char *syscmd,
int *numlines);
/* The following definitions come from lib/util_nscd.c */
void smb_nscd_flush_user_cache(void);

View File

@ -19,6 +19,7 @@
#include "includes.h"
#include "lib/util_file.h"
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_QUOTA

View File

@ -17,7 +17,10 @@
* this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "replace.h"
#include "lib/util_file.h"
#include "lib/util/debug.h"
#include "lib/util/samba_util.h"
#include "lib/util/sys_rw.h"
#include "lib/sys_popen.h"
#include "lib/async_req/async_sock.h"

35
source3/lib/util_file.h Normal file
View File

@ -0,0 +1,35 @@
/*
* Unix SMB/CIFS implementation.
* SMB parameters and setup
* Copyright (C) Andrew Tridgell 1992-1998 Modified by Jeremy Allison 1995.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 3 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __LIB_UTIL_FILE_H__
#define __LIB_UTIL_FILE_H__
#include "replace.h"
#include <tevent.h>
struct tevent_req *file_pload_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
const char *syscmd, size_t maxsize);
int file_pload_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
uint8_t **buf);
char **file_lines_pload(TALLOC_CTX *mem_ctx, const char *syscmd,
int *numlines);
#endif

View File

@ -33,6 +33,7 @@
#include "includes.h"
#include "printing/pcap.h"
#include "lib/util_file.h"
#if defined(SYSV) || defined(HPUX)
bool sysv_cache_reload(struct pcap_cache **_pcache)

View File

@ -20,6 +20,7 @@
#include "includes.h"
#include "smbd/smbd.h"
#include "smbd/globals.h"
#include "lib/util_file.h"
/****************************************************************************
Normalise for DOS usage.

View File

@ -35,6 +35,7 @@
#include "idmap.h"
#include "idmap_rw.h"
#include "../libcli/security/dom_sid.h"
#include "lib/util_file.h"
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_IDMAP