summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_recycle.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-12-22 16:03:28 +0000
committerJeremy Allison <jra@samba.org>2002-12-22 16:03:28 +0000
commitfa997c54eb266b6203945827b332600cd58f1379 (patch)
treedef1bae320b6d1902f47e5976ece8b85da14b8f3 /source3/modules/vfs_recycle.c
parentef8bd7c4f7ae8192ea05db070962ecf0ff3615f3 (diff)
downloadsamba-fa997c54eb266b6203945827b332600cd58f1379.tar.gz
samba-fa997c54eb266b6203945827b332600cd58f1379.tar.bz2
samba-fa997c54eb266b6203945827b332600cd58f1379.zip
talloc_init_named -> talloc_init.
Jeremy. (This used to be commit 35d00bacdc4b48c9b9e2ba9d4335c53a13f40f73)
Diffstat (limited to 'source3/modules/vfs_recycle.c')
-rw-r--r--source3/modules/vfs_recycle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_recycle.c b/source3/modules/vfs_recycle.c
index b59cb92a28..eedb65cd9d 100644
--- a/source3/modules/vfs_recycle.c
+++ b/source3/modules/vfs_recycle.c
@@ -119,7 +119,7 @@ static int recycle_connect(struct connection_struct *conn, const char *service,
DEBUG(10, ("Called for service %s (%d) as user %s\n", service, SNUM(conn), user));
- if (!(ctx = talloc_init_named("recycle bin"))) {
+ if (!(ctx = talloc_init("recycle bin"))) {
DEBUG(0, ("Failed to allocate memory in VFS module recycle_bin\n"));
return 0;
}