diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-17 12:48:19 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-18 14:28:40 +0200 |
commit | 2d89b52be8104261aa8f028f49210f016cbf4742 (patch) | |
tree | a8fa58b07b0efc5dae0652d7dbc79f99b88e5db4 /source3/include | |
parent | 519458a2fa01ae7e8eadebbe1d7895740861c468 (diff) | |
download | samba-2d89b52be8104261aa8f028f49210f016cbf4742.tar.gz samba-2d89b52be8104261aa8f028f49210f016cbf4742.tar.bz2 samba-2d89b52be8104261aa8f028f49210f016cbf4742.zip |
Use separate make variables for libutil and libcrypto.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index c03c34bc28..cb21f895d1 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1233,9 +1233,11 @@ bool add_gid_to_array_unique(TALLOC_CTX *mem_ctx, gid_t gid, gid_t **gids, size_t *num_gids); const char *get_numlist(const char *p, uint32 **num, int *count); bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf); +bool file_exist(const char *fname); bool socket_exist(const char *fname); time_t file_modtime(const char *fname); bool directory_exist_stat(char *dname,SMB_STRUCT_STAT *st); +bool directory_exist(char *dname); SMB_OFF_T get_file_size(char *file_name); char *attrib_string(uint16 mode); void show_msg(char *buf); @@ -1263,7 +1265,7 @@ void add_to_large_array(TALLOC_CTX *mem_ctx, size_t element_size, void *element, void *_array, uint32 *num_elements, ssize_t *array_size); void safe_free(void *p); -char *get_myname_talloc(TALLOC_CTX *ctx); +char *talloc_get_myname(TALLOC_CTX *ctx); char *get_mydnsdomname(TALLOC_CTX *ctx); int interpret_protocol(const char *str,int def); char *automount_lookup(TALLOC_CTX *ctx, const char *user_name); |