summaryrefslogtreecommitdiff
path: root/source3/include/libsmbclient.h
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-06-18 11:00:46 -0400
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-06-18 11:00:46 -0400
commit6398f945e80b25ed43c0128bd581397dfd96136f (patch)
tree9124b4685c9e02ff933526b85eda31a02b8b1784 /source3/include/libsmbclient.h
parent2b7fca9e79fa62011aed64f92e5bbabde7444caa (diff)
downloadsamba-6398f945e80b25ed43c0128bd581397dfd96136f.tar.gz
samba-6398f945e80b25ed43c0128bd581397dfd96136f.tar.bz2
samba-6398f945e80b25ed43c0128bd581397dfd96136f.zip
Remove prototype of unimplemented smbc_chown() function.
(This used to be commit 0e84e3bb800cec2b63df4692afbf9c40850b108f)
Diffstat (limited to 'source3/include/libsmbclient.h')
-rw-r--r--source3/include/libsmbclient.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
index 2e38944d65..96002643ef 100644
--- a/source3/include/libsmbclient.h
+++ b/source3/include/libsmbclient.h
@@ -1580,32 +1580,6 @@ int smbc_fstat(int fd, struct stat *st);
int smbc_ftruncate(int fd, off_t size);
-/**@ingroup attribue
- * Change the ownership of a file or directory.
- *
- * @param url The smb url of the file or directory to change
- * ownership of.
- *
- * @param owner I have no idea?
- *
- * @param group I have not idea?
- *
- * @return 0 on success, < 0 on error with errno set:
- * - EPERM The effective UID does not match the owner
- * of the file, and is not zero; or the owner or group
- * were specified incorrectly.
- * - ENOENT The file does not exist.
- * - ENOMEM Insufficient was available.
- * - ENOENT file or directory does not exist
- *
- * @todo Are we actually going to be able to implement this function
- *
- * @todo How do we abstract owner and group uid and gid?
- *
- */
-int smbc_chown(const char *url, uid_t owner, gid_t group);
-
-
/**@ingroup attribute
* Change the permissions of a file.
*