Skip to content

Commit dbd240f

Browse files
committed
Just some small fixes and cosmetics... (1.3.1)
1 parent ccfd170 commit dbd240f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

chkpwd.1

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
.TH checkpw 1 "June 2025" "chkpwd 1.3.0" "chkpwd man page"
1+
.TH checkpw 1 "June 2025" "chkpwd 1.3.1" "chkpwd man page"
22
.SH NAME
33
chkpwd \- checks the validity of a users password on a UNIX/PAM-based system.
44
.SH SYNOPSIS
55
chkpwd [OPTION]...
66
.SH DESCRIPTION
7-
chkpwd is a program that checks the validity of a users password on a UNIX/PAM-based system.
7+
chkpwd is a program that checks the validity of a users password on a
8+
UNIX/PAM-based system.
89
.SH OPTIONS
910
The options which apply to the chkpwd command are:
1011

@@ -14,11 +15,13 @@ The options which apply to the chkpwd command are:
1415
-V Print program version.
1516
-h Show this help.
1617

17-
chkpwd runs in an interactive mode when no username and/or password are set. A missing username and/or password will then be asked for program execution.
18+
chkpwd runs in an interactive mode when no username and/or password are set.
19+
A missing username and/or password will then be asked for while program
20+
execution.
1821

1922
.SH SEE ALSO
2023
pam(3), pam_authenticate(3), PAM(8), pam_unix(8)
2124
.SH BUGS
2225
No known bugs.
2326
.SH AUTHOR
24-
Johannes Findeisen (you@hanez.org)
27+
Written by Johannes Findeisen <you@hanez.org>.

chkpwd.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* UNIX/PAM-based system.
44
*
55
* Author: Johannes Findeisen <you@hanez.org> - 2024
6+
* Homepage: https://git.xw3.org/hanez/chkpwd
67
* License: Apache-2.0 (see LICENSE)
78
*/
89

chkpwd.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* password on a UNIX/PAM-based system.
44
*
55
* Author: Johannes Findeisen <you@hanez.org> - 2025
6+
* Homepage: https://git.xw3.org/hanez/chkpwd
67
* License: Apache-2.0 (see LICENSE)
78
*/
89

@@ -11,7 +12,7 @@
1112
#include <security/pam_misc.h>
1213
#include <stdbool.h>
1314

14-
#define VERSION "1.3.0"
15+
#define VERSION "1.3.1"
1516

1617
bool checkpw_authenticate(const char *username, const char *password,
1718
bool verbose);

0 commit comments

Comments
 (0)