fix for password in listen command (#2090)
This commit is contained in:
@@ -199,7 +199,7 @@ pub fn parse_listen_args(
|
||||
args: &ArgMatches,
|
||||
) -> Result<(), Error> {
|
||||
// listen args
|
||||
let pass = match args.value_of("pass") {
|
||||
let pass = match g_args.password.clone() {
|
||||
Some(p) => Some(p.to_owned()),
|
||||
None => Some(prompt_password(&None)),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user