aboutsummaryrefslogtreecommitdiff
path: root/loginutils/passwd.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Patch from Bernhard Fischer to make a bunch of symbols staticEric Andersen2005-04-161-2/+2
| | | | which were otherwise cluttering the global namespace.
* Only write to shadow file is shadow passwords are enabled. Patch by magicfox ↵Glenn L McGrath2004-09-151-5/+4
| | | | modified by myself to retain check for shadow file access.
* Tito writes:Eric Andersen2004-09-021-7/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hi Erik, Hi to all, This is part five of the my_get*id story. I've tweaked a bit this two functions to make them more flexible, but this changes will not affect existing code. Now they work so: 1) my_getpwuid( char *user, uid_t uid, int bufsize) if bufsize is > 0 char *user cannot be set to NULL on success username is written on static allocated buffer on failure uid as string is written to buffer and NULL is returned if bufsize is = 0 char *user can be set to NULL on success username is returned on failure NULL is returned if bufsize is < 0 char *user can be set to NULL on success username is returned on failure an error message is printed and the program exits 2) 1) my_getgrgid( char *group, uid_t uid, int bufsize) if bufsize is > 0 char *group cannot be set to NULL on success groupname is written on static allocated buffer on failure gid as string is written to buffer and NULL is returned if bufsize is = 0 char *group can be set to NULL on success groupname is returned on failure NULL is returned if bufsize is < 0 char *group can be set to nULL on success groupname is returned on failure an error message is printed and the program exits This changes were needed mainly for my new id applet. It is somewhat bigger then the previous but matches the behaviour of GNU id and is capable to handle usernames of whatever length. BTW: at a first look it seems to me that it will integrate well (with just a few changes) with the pending patch in patches/id_groups_alias.patch. The increase in size is balanced by the removal of my_getpwnamegid.c from libbb as this was used only in previous id applet and by size optimizations made possible in whoami.c and in passwd.c. I know that we are in feature freeze but I think that i've tested it enough (at least I hope so.......).
* Do not use getpass(3)Eric Andersen2004-05-011-3/+3
|
* Set the default password to md5, patch by Joshua JacksonGlenn L McGrath2003-09-041-1/+1
|
* Major coreutils update.Manuel Novoa III2003-03-191-13/+13
|
* Patch from Joshua Jackson, make md5 the default hash algorithmGlenn L McGrath2003-02-081-3/+3
|
* Applied vodz' patches #49 and #50 (with a small correction in runshell.c)Robert Griebl2002-07-191-1/+1
| | | | | | | | | #49: I found one memory overflow and memory leak in "ln" applet. Last patch reduced also 54 bytes. ;) #50: I found bug in loginutils/Makefile.in. New patch have also new function to libbb and aplied this to applets and other cosmetic changes.
* Fix text alignment, thanks to Sander Klein <s.klein@quicknet.nl>Eric Andersen2002-07-031-6/+4
|
* Port over the last of the tinylogin appletsEric Andersen2002-06-231-0/+408
-Erik