rename to avoid name conflict
This commit is contained in:
parent
3f4b671486
commit
0ec2f3b20f
1 changed files with 3 additions and 3 deletions
|
@ -98,9 +98,9 @@ genAddresses addrs = do
|
|||
linkRemote :: RemoteName -> CommandStart
|
||||
linkRemote remotename = do
|
||||
showStart "p2p link" remotename
|
||||
next $ next prompt
|
||||
next $ next promptaddr
|
||||
where
|
||||
prompt = do
|
||||
promptaddr = do
|
||||
liftIO $ putStrLn ""
|
||||
liftIO $ putStr "Enter peer address: "
|
||||
liftIO $ hFlush stdout
|
||||
|
@ -112,7 +112,7 @@ linkRemote remotename = do
|
|||
else case unformatP2PAddress s of
|
||||
Nothing -> do
|
||||
liftIO $ hPutStrLn stderr "Unable to parse that address, please check its format and try again."
|
||||
prompt
|
||||
promptaddr
|
||||
Just addr -> do
|
||||
r <- setupLink remotename addr
|
||||
case r of
|
||||
|
|
Loading…
Reference in a new issue