summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-06-18 11:00:46 -0400
committerKarolin Seeger <kseeger@samba.org>2008-06-24 09:11:13 +0200
commit31a23b3fe4ca3cf7c65a6b3e079d10ef2956fae2 (patch)
tree9f2f6a668df847a534d2041aa08dbb5321a21de7
parent1cbae6583e04aa382c27d459f8d1c58488b3af7a (diff)
downloadsamba-31a23b3fe4ca3cf7c65a6b3e079d10ef2956fae2.tar.gz
Remove prototype of unimplemented smbc_chown() function.
(cherry picked from commit 0e84e3bb800cec2b63df4692afbf9c40850b108f)
-rw-r--r--source/include/libsmbclient.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/source/include/libsmbclient.h b/source/include/libsmbclient.h
index c7ba63de31f..74d0d5c9ddb 100644
--- a/source/include/libsmbclient.h
+++ b/source/include/libsmbclient.h
@@ -1590,32 +1590,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.
*