diff options
author | Derrell Lipman <derrell.lipman@unwireduniverse.com> | 2008-03-02 16:21:48 -0500 |
---|---|---|
committer | Karolin Seeger <ks@sernet.de> | 2008-03-04 09:02:00 +0100 |
commit | 8cd0cf153e409dd49e66bd500fad8501371a83a5 (patch) | |
tree | c0d0014f3c234c1cb508b1444d455c38350ee1fc /examples/libsmbclient/testacl2.c | |
parent | 2edf9c595ec16c169653ee6620d6fe0190f908cd (diff) | |
download | samba-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.c | 2 |
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)); |