summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-10-31 10:19:13 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-11-07 14:16:41 +0000
commita591de28659919d2afd7ed55106cded6a0d9ab35 (patch)
tree433789aa762b85be8b6bdf1c2360b6d7e6da705e
parent81ae199bb72886f2f1ed87b22b4c75b6b99c72f6 (diff)
downloadsamba-a591de28659919d2afd7ed55106cded6a0d9ab35.tar.gz
s3: remove unused function standard_sub_advanced()
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13745 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
-rw-r--r--source3/include/proto.h4
-rw-r--r--source3/lib/substitute.c16
2 files changed, 0 insertions, 20 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index cdec671dac3..856b41272ad 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -185,10 +185,6 @@ char *talloc_sub_advanced(TALLOC_CTX *mem_ctx,
const char *connectpath, gid_t gid,
const char *smb_name, const char *domain_name,
const char *str);
-void standard_sub_advanced(const char *servicename, const char *user,
- const char *connectpath, gid_t gid,
- const char *smb_name, const char *domain_name,
- char *str, size_t len);
/* The following definitions come from lib/sysquotas.c */
diff --git a/source3/lib/substitute.c b/source3/lib/substitute.c
index f8ca6f41cc1..8fd4fbf9519 100644
--- a/source3/lib/substitute.c
+++ b/source3/lib/substitute.c
@@ -863,22 +863,6 @@ char *talloc_sub_advanced(TALLOC_CTX *ctx,
return ret_string;
}
-void standard_sub_advanced(const char *servicename, const char *user,
- const char *connectpath, gid_t gid,
- const char *smb_name, const char *domain_name,
- char *str, size_t len)
-{
- char *s = talloc_sub_advanced(talloc_tos(),
- servicename, user, connectpath,
- gid, smb_name, domain_name, str);
-
- if (!s) {
- return;
- }
- strlcpy( str, s, len );
- TALLOC_FREE( s );
-}
-
/******************************************************************************
version of standard_sub_basic() for string lists; uses talloc_sub_basic()
for the work