9f24f9e262
- add for-next changes, update changelog date * add 0001-smbinfo-Improve-help-usage-and-add-h-option.patch * add 0002-smbinfo-Add-bash-completion-support-for-smbinfo.patch * add 0003-getcifsacl-Add-support-to-accept-more-paths.patch * add 0004-getcifsacl-Fix-usage-message-to-include-multiple-fil.patch * add 0005-smbinfo-add-GETCOMPRESSION-support.patch * add 0006-getcifsacl-Add-support-for-R-recursive-option.patch * add 0007-smbinfo-add-bash-completion-support-for-getcompressi.patch * add 0008-mount.cifs.c-fix-memory-leaks-in-main-func.patch * add 0009-Zero-fill-the-allocated-memory-for-new-struct-cifs_n.patch * add 0010-Zero-fill-the-allocated-memory-for-a-new-ACE.patch OBS-URL: https://build.opensuse.org/request/show/723800 OBS-URL: https://build.opensuse.org/package/show/network:samba:STABLE/cifs-utils?expand=0&rev=172
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 13c370424575d864544bfb4535832dfcffa91e82 Mon Sep 17 00:00:00 2001
|
|
From: Pavel Shilovsky <pshilov@microsoft.com>
|
|
Date: Tue, 7 May 2019 15:52:30 -0700
|
|
Subject: [PATCH] smbinfo: add bash completion support for getcompression
|
|
|
|
Signed-off-by: Pavel Shilovsky <pshilov@microsoft.com>
|
|
---
|
|
bash-completion/smbinfo | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/bash-completion/smbinfo b/bash-completion/smbinfo
|
|
index ad5d34d..282db55 100644
|
|
--- a/bash-completion/smbinfo
|
|
+++ b/bash-completion/smbinfo
|
|
@@ -16,6 +16,7 @@ smb_info()
|
|
filepositioninfo
|
|
filestandardinfo
|
|
fsctl-getobjid
|
|
+ getcompression
|
|
list-snapshots
|
|
quota
|
|
secdesc"
|
|
@@ -25,7 +26,7 @@ smb_info()
|
|
;;
|
|
'fileaccessinfo'|'filealigninfo'|'fileallinfo'|'filebasicinfo'|'fileeainfo'|'filefsfullsizeinfo'|\
|
|
'fileinternalinfo'|'filemodeinfo'|'filepositioninfo'|'filestandardinfo'|'fsctl-getobjid'|\
|
|
- 'list-snapshots'|'quota'|'secdesc')
|
|
+ 'getcompression'|'list-snapshots'|'quota'|'secdesc')
|
|
local IFS=$'\n'
|
|
compopt -o filenames
|
|
COMPREPLY=( $(compgen -f -o dirnames -- ${cur:-""}) )
|
|
--
|
|
2.16.4
|
|
|