diff options
author | joe <joe@jerkface.net> | 2014-05-04 17:48:05 -0400 |
---|---|---|
committer | joe <joe@jerkface.net> | 2014-05-04 17:48:05 -0400 |
commit | b06f6ca1b87749619d13f97e8e99ea76ca776ecc (patch) | |
tree | 1d2df446a73d8bc1f8940d05880c9b8ca0ea2fe8 /kiki.hs | |
parent | be0e20cbb8f904a5091f88f32f353b5abed5cb06 (diff) |
cosmetics, haddock.
Diffstat (limited to 'kiki.hs')
-rw-r--r-- | kiki.hs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -760,7 +760,7 @@ sync bExport bImport bSecret cmdarg args_raw = do | |||
760 | , access = AutoAccess | 760 | , access = AutoAccess |
761 | , initializer = Nothing } | 761 | , initializer = Nothing } |
762 | kikiOp = KeyRingOperation | 762 | kikiOp = KeyRingOperation |
763 | { kFiles = Map.fromList $ | 763 | { opFiles = Map.fromList $ |
764 | [ ( HomeSec, buildStreamInfo (if bSecret && bImport then KF_All | 764 | [ ( HomeSec, buildStreamInfo (if bSecret && bImport then KF_All |
765 | else KF_None) | 765 | else KF_None) |
766 | (KeyRingFile passfd) ) | 766 | (KeyRingFile passfd) ) |
@@ -773,7 +773,7 @@ sync bExport bImport bSecret cmdarg args_raw = do | |||
773 | ++ if bSecret then walts else [] | 773 | ++ if bSecret then walts else [] |
774 | ++ hosts | 774 | ++ hosts |
775 | , kManip = maybe noManip (const doAutosign) $ Map.lookup "--autosign" margs | 775 | , kManip = maybe noManip (const doAutosign) $ Map.lookup "--autosign" margs |
776 | , homeSpec = homespec | 776 | , opHome = homespec |
777 | } | 777 | } |
778 | 778 | ||
779 | (\f -> maybe f (const $ kiki_usage bSecret cmdarg) $ Map.lookup "--help" margs) $ do | 779 | (\f -> maybe f (const $ kiki_usage bSecret cmdarg) $ Map.lookup "--help" margs) $ do |
@@ -866,7 +866,7 @@ kiki "show" args = do | |||
866 | , access = AutoAccess | 866 | , access = AutoAccess |
867 | } | 867 | } |
868 | kikiOp = KeyRingOperation | 868 | kikiOp = KeyRingOperation |
869 | { kFiles = Map.fromList $ | 869 | { opFiles = Map.fromList $ |
870 | [ ( HomeSec, streaminfo { access = Sec }) | 870 | [ ( HomeSec, streaminfo { access = Sec }) |
871 | , ( HomePub, streaminfo { access = Pub }) | 871 | , ( HomePub, streaminfo { access = Pub }) |
872 | ] | 872 | ] |
@@ -875,7 +875,7 @@ kiki "show" args = do | |||
875 | ++ walts | 875 | ++ walts |
876 | ++ hosts | 876 | ++ hosts |
877 | , kManip = noManip | 877 | , kManip = noManip |
878 | , homeSpec = homespec | 878 | , opHome = homespec |
879 | } | 879 | } |
880 | 880 | ||
881 | (\f -> maybe f (const $ kiki_usage False "show") $ Map.lookup "--help" margs) $ do | 881 | (\f -> maybe f (const $ kiki_usage False "show") $ Map.lookup "--help" margs) $ do |