From cb6cbecba196616d2c979be627fcc4d55bf49dea Mon Sep 17 00:00:00 2001 From: Erik Ekman Date: Mon, 16 Aug 2021 10:34:41 +0200 Subject: [PATCH] Make it clearer that iodine is asking for a password To not confuse it with sudo or similar --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.c b/src/common.c index 8f2680c..3abafac 100644 --- a/src/common.c +++ b/src/common.c @@ -305,7 +305,7 @@ read_password(char *buf, size_t len) int i; #endif - fprintf(stderr, "Enter password: "); + fprintf(stderr, "Enter tunnel password: "); fflush(stderr); #ifndef WINDOWS32 fscanf(stdin, "%79[^\n]", pwd);