diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-13 13:21:43 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-13 13:21:43 -0400 |
commit | 21be10618d4e2ca40d8295fee4ed26b972cb850a (patch) | |
tree | 18ea13f8d2452c57308b86e0fe6ea44c581471e5 /Command/Vicfg.hs | |
parent | b2e7b1a0bcf0faedec8ed60a46851a9e55f5ed94 (diff) |
full analysis of ways content could stop being preferred and need to be dropped
Diffstat (limited to 'Command/Vicfg.hs')
-rw-r--r-- | Command/Vicfg.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Vicfg.hs b/Command/Vicfg.hs index 178efec3a..0466c0c31 100644 --- a/Command/Vicfg.hs +++ b/Command/Vicfg.hs @@ -125,7 +125,7 @@ genCfg cfg descs = unlines $ concat [intro, trust, groups, preferredcontent] ] line setting u value = - [ com $ "(" ++ (fromMaybe "" $ M.lookup u descs) ++ ")" + [ com $ "(for " ++ (fromMaybe "" $ M.lookup u descs) ++ ")" , unwords [setting, fromUUID u, "=", value] ] lcom = map (\l -> if "#" `isPrefixOf` l then l else "#" ++ l) |