summaryrefslogtreecommitdiffstats
path: root/examples/libsmbclient/testacl2.c
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-03-02 16:21:48 -0500
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-03-02 16:21:48 -0500
commit8a05c0a8843c001bdb4ac31e9ea382dd89716b55 (patch)
treea082b0e806e2bac9043c55811d27e90126c170ec /examples/libsmbclient/testacl2.c
parentbf950ea7586c558205a7315419d015263f53e4e4 (diff)
downloadsamba-8a05c0a8843c001bdb4ac31e9ea382dd89716b55.tar.gz
samba-8a05c0a8843c001bdb4ac31e9ea382dd89716b55.tar.xz
samba-8a05c0a8843c001bdb4ac31e9ea382dd89716b55.zip
Remove use of deprecated function
(This used to be commit 93580bce833453ba512ee436d6dfdbdcd2c53777)
Diffstat (limited to 'examples/libsmbclient/testacl2.c')
-rw-r--r--examples/libsmbclient/testacl2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/libsmbclient/testacl2.c b/examples/libsmbclient/testacl2.c
index df38fe208ed..d2a97cf2d21 100644
--- a/examples/libsmbclient/testacl2.c
+++ b/examples/libsmbclient/testacl2.c
@@ -39,7 +39,7 @@ int main(int argc, const char *argv[])
}
SMBCCTX *context = smbc_set_context(NULL);
- smbc_option_set(context, "full_time_names", 1);
+ smbc_setOptionFullTimeNames(context, 1);
the_acl = strdup("system.nt_sec_desc.*");
ret = smbc_getxattr(argv[1], the_acl, value, sizeof(value));