diff options
Diffstat (limited to 'manual/examples/mygetpass.c')
-rw-r--r-- | manual/examples/mygetpass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/examples/mygetpass.c b/manual/examples/mygetpass.c index dfc0c59a7f..3f465ac8ea 100644 --- a/manual/examples/mygetpass.c +++ b/manual/examples/mygetpass.c @@ -1,4 +1,4 @@ -/* Reading Passwords +/* Reading passphrases manually. Copyright (C) 1991-2018 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or @@ -32,7 +32,7 @@ my_getpass (char **lineptr, size_t *n, FILE *stream) if (tcsetattr (fileno (stream), TCSAFLUSH, &new) != 0) return -1; - /* Read the password. */ + /* Read the passphrase */ nread = getline (lineptr, n, stream); /* Restore terminal. */ |