Some content update and fixes...

This commit is contained in:
Johannes Findeisen 2025-09-08 02:55:20 +02:00
commit 92fdb05161
2 changed files with 14 additions and 3 deletions

View file

@ -1,4 +1,4 @@
# MERGED PROJECT!!! I WILL UPDATE THIS README IN THE NEXT DAYS!!! THE FOLLOWING DOCUMENTATION WILL NOT WORK ACTUALLY!
# THE FOLLOWING DOCUMENTATION WILL NOT WORK ACTUALLY! YOU NEED TO READ THE CODE ACTUALLY, SORRY...
# chkusr
@ -19,6 +19,7 @@ chkusr is a set of programs to verify information about a user on UNIX based sys
* [None interactive mode with username and password provided as arguments to chkpwd](#none-interactive-mode-with-username-and-password-provided-as-arguments-to-chkpwd)
* [Request the result from the above commands](#request-the-result-from-the-above-commands)
* [Custom build](#custom-build)
* [chkpwr](#chkpwr)
* [Links](#links)
* [License](#license)
@ -128,6 +129,10 @@ Set MAX_UID and MIN_UID at compile time:
gcc -Wall -DMAX_UID=1000 -DMIN_UID=1000 -o chkpwd chkpwd.c -lpam -lpam_misc
```
## chkpwr
A program to validate a string with a password rule. More to come...
## Links
- [https://git.xw3.org/hanez/chkusr](https://git.xw3.org/hanez/chkusr)

View file

@ -1,4 +1,10 @@
#define VERSION "1.5.0"
/*
* Author: Johannes Findeisen <you@hanez.org> - 2025
* Homepage: https://git.xw3.org/hanez/chkusr
* License: Apache-2.0 (see LICENSE)
*/
#define VERSION "1.5.1"
/* For chkgrp */
#ifndef MAX_LINE
@ -10,7 +16,7 @@
#define MAX_NAME 256
#endif
/* For chkpwd */
/* For chkpwd; Also uses MAX_NAME from chkgrp above */
#ifndef MAX_PASSWORD
#define MAX_PASSWORD 256
#endif