summary refs log tree commit diff
path: root/Completion/BSD/Type/_file_flags
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/BSD/Type/_file_flags')
-rw-r--r--Completion/BSD/Type/_file_flags6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/BSD/Type/_file_flags b/Completion/BSD/Type/_file_flags
index 95044121c..202a46c4a 100644
--- a/Completion/BSD/Type/_file_flags
+++ b/Completion/BSD/Type/_file_flags
@@ -7,6 +7,7 @@ local -a context line state state_descr copts=( "${@}" ) flags flag_descs
 local -A val_args
 
 flag_descs+=(
+  nodump nodump
   uappnd 'user append-only'
   uchg 'user immutable'
 )
@@ -14,7 +15,6 @@ flag_descs+=(
 if (( su )); then
   flag_descs+=(
     arch archived
-    nodump nodump
     sappnd 'system append-only'
     schg 'system immutable'
   )
@@ -36,12 +36,12 @@ if [[ $OSTYPE = (darwin|dragonfly|freebsd|netbsd)* ]]; then
 
   if [[ $OSTYPE = dragonfly* ]]; then
     flag_descs+=(
-      cache XXX
+      cache cache
       nouhistory 'user nohistory'
     )
 
     (( su )) && flag_descs+=(
-      noscache XXX
+      noscache noscache
       noshistory 'system nohistory'
     )
   fi