diff options
author | Filipp Lepalaan <filipp@mac.com> | 2019-03-19 15:08:52 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2019-03-19 15:08:52 +0200 |
commit | 572fe24467d6d8843f2f5c26e330f16f8c1408e7 (patch) | |
tree | 72497327e8ac0f83de9aae377797c21d731089e0 | |
parent | f0d4b9e62dcad979308fddfc0f82711422cec4ff (diff) | |
download | sendEmail-572fe24467d6d8843f2f5c26e330f16f8c1408e7.tar.gz sendEmail-572fe24467d6d8843f2f5c26e330f16f8c1408e7.tar.bz2 sendEmail-572fe24467d6d8843f2f5c26e330f16f8c1408e7.zip |
Fix typo
-rwxr-xr-x | sendEmail | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'}; |