Bug 3188
| Summary: | undefined reference to 'ulckpwdf' | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | josh |
| Component: | glibc | Assignee: | Cristian Gafton <gafton> |
| Status: | CLOSED NOTABUG | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 5.2 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-06-02 09:52:48 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
I have confirmed this on a stock 6.0 machine. Fix the typo in your program. |
I am attempting to use the shadow suite password file locking routines, but only the locking one of them seems to be in the glibc libraries. I get the following error message: /tmp/cca126091.o: In function `main': /tmp/cca126091.o(.text+0x3d): undefined reference to `ulckpdwf' when I attempt to compile the following program: #include <stdio.h> #include <shadow.h> void main(void) { int i; i = lckpwdf(); printf("Press enter to continue."); i = getchar(); printf("Done.\n"); i = ulckpdwf(); } Any ideas?