aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2019-03-19 15:08:52 +0200
committerFilipp Lepalaan <filipp@mac.com>2019-03-19 15:08:52 +0200
commit572fe24467d6d8843f2f5c26e330f16f8c1408e7 (patch)
tree72497327e8ac0f83de9aae377797c21d731089e0
parentf0d4b9e62dcad979308fddfc0f82711422cec4ff (diff)
downloadsendEmail-572fe24467d6d8843f2f5c26e330f16f8c1408e7.tar.gz
sendEmail-572fe24467d6d8843f2f5c26e330f16f8c1408e7.tar.bz2
sendEmail-572fe24467d6d8843f2f5c26e330f16f8c1408e7.zip
Fix typo
-rwxr-xr-xsendEmail2
1 files changed, 1 insertions, 1 deletions
diff --git a/sendEmail b/sendEmail
index e54cb88..9078fc2 100755
--- a/sendEmail
+++ b/sendEmail
@@ -453,7 +453,7 @@ sub processCommandLine {
if ( $opt{'username'} ) {
if (!$opt{'password'}) {
## Prompt for a password since one wasn't specified with the -xp option.
- $SIG{'ALRM'} = sub { quit("ERROR => Timeout waiting for password inpupt", 1); };
+ $SIG{'ALRM'} = sub { quit("ERROR => Timeout waiting for password input", 1); };
alarm(60) if ($^O !~ /mswin/i); ## alarm() doesn't work in win32
print "Password: ";
$opt{'password'} = <STDIN>; chomp $opt{'password'};