s3: rename talloc_sub_advanced() to talloc_sub_full()
commit90c90fc8a25b041e5213b9695dfc68ed9df37a08
authorRalph Boehme <slow@samba.org>
Thu, 31 Oct 2019 11:45:44 +0000 (31 12:45 +0100)
committerKarolin Seeger <kseeger@samba.org>
Wed, 13 Nov 2019 13:32:24 +0000 (13 13:32 +0000)
treeea80575c4c793e484913861ae7b170dc84bec0db
parent58ea968c752d6d7e750b4ffce267be1eb0cd543f
s3: rename talloc_sub_advanced() to talloc_sub_full()

We currently have the following substitution functions:

  talloc_sub_basic()
  talloc_sub_advanced()

talloc_sub_basic() currently substitutes a subset of talloc_sub_advanced().

We'll need a function X that only substitutes what talloc_sub_advanced()
substitutes *without* what talloc_sub_basic() does.

To get there rename talloc_sub_advanced() to talloc_sub_full(). A subsequent
commit will then bring back talloc_sub_advanced() as described above.

Examples with fictional replacement letters A and B. Currently:

  talloc_sub_basic:    A
  talloc_sub_advanced: AB

New:

  talloc_sub_basic:    A
  talloc_sub_advanced:  B
  talloc_sub_full:     AB

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>
(backported from commit 4736623c24503b3ca09c76c9dbb134ef833b2f80)
source3/include/proto.h
source3/lib/substitute.c
source3/modules/vfs_expand_msdfs.c
source3/modules/vfs_full_audit.c
source3/modules/vfs_recycle.c
source3/modules/vfs_virusfilter_utils.c
source3/printing/print_generic.c
source3/printing/printing.c
source3/rpc_server/srvsvc/srv_srvsvc_nt.c
source3/smbd/lanman.c
source3/smbd/service.c