diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-30 12:52:11 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-30 05:58:35 +0200 |
commit | 1018dd182686f5b3a6db3d08294c78305521e4f4 (patch) | |
tree | fa495ea3983e9e4a20685c76a6d070562b1da3f9 /source3/include | |
parent | e1eae822856c076f63874d8d3b07691b3154848d (diff) | |
download | samba-1018dd182686f5b3a6db3d08294c78305521e4f4.tar.gz samba-1018dd182686f5b3a6db3d08294c78305521e4f4.tar.bz2 samba-1018dd182686f5b3a6db3d08294c78305521e4f4.zip |
s3-lib: Rely on uint64_t in conv_str_size()
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Sat Apr 30 05:58:35 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 170b9ad5e6..fe981f1d54 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1007,7 +1007,7 @@ char *ipstr_list_make(char **ipstr_list, int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list); void ipstr_list_free(char* ipstr_list); uint64_t STR_TO_SMB_BIG_UINT(const char *nptr, const char **entptr); -SMB_OFF_T conv_str_size(const char * str); +uint64_t conv_str_size(const char * str); bool add_string_to_array(TALLOC_CTX *mem_ctx, const char *str, const char ***strings, int *num); |