We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Some pending tools call update_password() using only 3 arguments while 4 are expected.
pending
update_password()
lib/password.c:int update_password(char *filename, char *username, char *entry, int pos)
GCC error:
toys/pending/chsh.c:74:13: error: too few arguments to function 'update_password'
I've patched 5 toys adding a trailing argument 0. It seems to work fine now.
0
toys/pending/chsh.c toys/pending/groupadd.c toys/pending/groupdel.c toys/pending/useradd.c toys/pending/userdel.c
Patch: https://salsa.debian.org/debian/toybox/-/raw/d4513b243b800e0be9ecaec835656f0366a8cb2a/debian/patches/update_password.patch
The text was updated successfully, but these errors were encountered:
My bad, I have a largeish rewrite of lib/password.c in my tree that I need to test under mkroot, ala https://landley.net/notes-2022.html#08-01-2022
Looks like some of the changes leaked into a commit. Oops.
Sorry, something went wrong.
No branches or pull requests
Hi,
Some
pending
tools callupdate_password()
using only 3 arguments while 4 are expected.GCC error:
I've patched 5 toys adding a trailing argument
0
. It seems to work fine now.Patch: https://salsa.debian.org/debian/toybox/-/raw/d4513b243b800e0be9ecaec835656f0366a8cb2a/debian/patches/update_password.patch
The text was updated successfully, but these errors were encountered: