| Summary: | src/libexec/ypxfr/ypxfr_getmap.c:51: conflicting types in declaration of `yp_errno'. | ||
|---|---|---|---|
| Product: | Base System | Reporter: | Cristan Szmajda <cristan> |
| Component: | bin | Assignee: | dd <dd> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Unspecified | ||
| Hardware: | Any | ||
| OS: | Any | ||
State Changed From-To: open->analyzed fixed, thanks! Responsible Changed From-To: freebsd-bugs->dd My MFC reminder. State Changed From-To: analyzed->closed MFC'd |
"yp_errno" is declared "enum ypstat" in src/libexec/ypxfr/ypxfr_extern.h but "int" in src/libexec/ypxfr/ypxfr_getmap.c . Fix: Change: extern int yp_errno; on line 51 of src/libexec/ypxfr/ypxfr_getmap.c to: extern enum ypstat yp_errno; How-To-Repeat: make buildworld