summaryrefslogtreecommitdiff
path: root/examples/libsmbclient/testacl2.c
diff options
context:
space:
mode:
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>2008-03-02 16:21:48 -0500
committerKarolin Seeger <ks@sernet.de>2008-03-04 09:02:00 +0100
commit8cd0cf153e409dd49e66bd500fad8501371a83a5 (patch)
treec0d0014f3c234c1cb508b1444d455c38350ee1fc /examples/libsmbclient/testacl2.c
parent2edf9c595ec16c169653ee6620d6fe0190f908cd (diff)
downloadsamba-8cd0cf153e409dd49e66bd500fad8501371a83a5.tar.gz
samba-8cd0cf153e409dd49e66bd500fad8501371a83a5.tar.bz2
samba-8cd0cf153e409dd49e66bd500fad8501371a83a5.zip
Remove use of deprecated function
(cherry picked from commit 93580bce833453ba512ee436d6dfdbdcd2c53777) (This used to be commit 0621dfe10f1fd3d8ce04a039d2d44d6c67407746)
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 df38fe208e..d2a97cf2d2 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));