aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'};