mirror of
https://github.com/samba-team/samba.git
synced 2025-08-26 01:49:31 +03:00
Fix prototype for attrib_string().
This commit is contained in:
@ -52,6 +52,7 @@
|
||||
#include "librpc/gen_ndr/ndr_nbt.h"
|
||||
#include "param/param.h"
|
||||
#include "librpc/rpc/dcerpc.h"
|
||||
#include "libcli/raw/raw_proto.h"
|
||||
|
||||
/* the default pager to use for the client "more" command. Users can
|
||||
* override this with the PAGER environment variable */
|
||||
|
@ -177,6 +177,6 @@ LIBCLI_RAW_OBJ_FILES = $(addprefix $(libclisrcdir)/raw/, rawfile.o smb_signing.o
|
||||
rawioctl.o rawacl.o rawdate.o rawlpq.o rawshadow.o)
|
||||
|
||||
|
||||
$(eval $(call proto_header_template,$(libclisrcdir)/raw/raw_proto.h,$(LIBCLI_RAW_OBJ_FILES:.o=.c)))
|
||||
$(eval $(call proto_header_template,$(libclisrcdir)/raw/raw_proto.h,$(LIBCLI_RAW_OBJ_FILES)))
|
||||
|
||||
mkinclude smb2/config.mk
|
||||
|
@ -33,7 +33,7 @@
|
||||
/**
|
||||
Return a string representing a CIFS attribute for a file.
|
||||
**/
|
||||
_PUBLIC_ char *attrib_string(TALLOC_CTX *mem_ctx, uint32_t attrib)
|
||||
char *attrib_string(TALLOC_CTX *mem_ctx, uint32_t attrib)
|
||||
{
|
||||
int i, len;
|
||||
const struct {
|
||||
|
Reference in New Issue
Block a user