summaryrefslogtreecommitdiff
path: root/source3/utils/smbget.c
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2015-11-02 16:33:34 +0100
committerJeremy Allison <jra@samba.org>2015-12-22 02:22:50 +0100
commit00e952e3c6daa9fe51cc7e79b5d5e6dd37831246 (patch)
treee95139c6365224c28a0758a70861f984bd6e6719 /source3/utils/smbget.c
parentb165d520374cc2ae77acfd813b528e55acfc2f7e (diff)
downloadsamba-00e952e3c6daa9fe51cc7e79b5d5e6dd37831246.tar.gz
s3: fix encryption help messages
Encryption is a SMB3 feature and not tied to UNIX extensions, so fix the help messages of various utilities. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Tue Dec 22 02:22:50 CET 2015 on sn-devel-144
Diffstat (limited to 'source3/utils/smbget.c')
-rw-r--r--source3/utils/smbget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbget.c b/source3/utils/smbget.c
index c3eb471032a..b3ce7432ede 100644
--- a/source3/utils/smbget.c
+++ b/source3/utils/smbget.c
@@ -597,7 +597,7 @@ int main(int argc, const char **argv)
int ret = 0;
struct poptOption long_options[] = {
{"guest", 'a', POPT_ARG_NONE, NULL, 'a', "Work as user guest" },
- {"encrypt", 'e', POPT_ARG_NONE, NULL, 'e', "Encrypt SMB transport (UNIX extended servers only)" },
+ {"encrypt", 'e', POPT_ARG_NONE, NULL, 'e', "Encrypt SMB transport" },
{"resume", 'r', POPT_ARG_NONE, &resume, 0, "Automatically resume aborted files" },
{"update", 'U', POPT_ARG_NONE, &update, 0, "Download only when remote file is newer than local file or local file is missing"},
{"recursive", 'R', POPT_ARG_NONE, &recursive, 0, "Recursively download files" },