aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/auth/crypt.c2
-rw-r--r--src/auth/pam.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/auth/crypt.c b/src/auth/crypt.c
index ef74959..6839386 100644
--- a/src/auth/crypt.c
+++ b/src/auth/crypt.c
@@ -123,7 +123,7 @@ char authenticate_crypt(void)
stty.c_lflag = 0;
tcsetattr(STDIN_FILENO, TCSAFLUSH, &stty);
- printf("Incorrect passphrase\n");
+ printf("\nPassphrase incorrect.\nOnly perfect spellers may\nenter this system.\n");
return 0;
}
diff --git a/src/auth/pam.c b/src/auth/pam.c
index c13b0f0..9c93d51 100644
--- a/src/auth/pam.c
+++ b/src/auth/pam.c
@@ -234,7 +234,7 @@ char authenticate_pam(void)
stty.c_lflag = 0;
tcsetattr(STDIN_FILENO, TCSAFLUSH, &stty);
- printf("Incorrect passphrase\n");
+ printf("\nPassphrase incorrect.\nOnly perfect spellers may\nenter this system.\n");
pam_end(handle, rc);
return 0;
}