diff options
author | Richard Sharpe <sharpe@samba.org> | 2001-01-05 22:32:53 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2001-01-05 22:32:53 +0000 |
commit | c29e85cf89409a7ecbf8316af5d796f812d6be34 (patch) | |
tree | 8ccbfe11cd074fbede069d69e52d162065a7a709 /source3/include | |
parent | 5d7a98bbce1618538249c5ae79a8cb3d3a67b2a6 (diff) | |
download | samba-c29e85cf89409a7ecbf8316af5d796f812d6be34.tar.gz samba-c29e85cf89409a7ecbf8316af5d796f812d6be34.tar.bz2 samba-c29e85cf89409a7ecbf8316af5d796f812d6be34.zip |
Fix a small type in libsmbclient.h ...
(This used to be commit 807e2e1faa23a36cd1abc07ac8a26d157099aba1)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/libsmbclient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h index 173a56270b..691307badf 100644 --- a/source3/include/libsmbclient.h +++ b/source3/include/libsmbclient.h @@ -130,7 +130,7 @@ int smbc_fstat(int fd, struct stat *st); * Chown a file */ -int smbc_chown(const *fname, uid_t owner, gid_t group); +int smbc_chown(const char *fname, uid_t owner, gid_t group); /* * Chmod a file |