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
On OpenSUSE, dbm_open() expects a char * as the file name, instead of a const char *. A warning is emitted during the build:
dbm_open()
char *
const char *
ckpasswd.c:171:25: warning: passing argument 1 of 'dbm_open' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On OpenSUSE,
dbm_open()
expects achar *
as the file name, instead of aconst char *
.A warning is emitted during the build:
The text was updated successfully, but these errors were encountered: