Bug 29190

Summary: src/libexec/ypxfr/ypxfr_getmap.c:51: conflicting types in declaration of `yp_errno'.
Product: Base System Reporter: Cristan Szmajda <cristan>
Component: binAssignee: dd <dd>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Unspecified   
Hardware: Any   
OS: Any   

Description Cristan Szmajda 2001-07-24 13:00:30 UTC
"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
Comment 1 dd freebsd_committer freebsd_triage 2001-07-24 13:33:11 UTC
State Changed
From-To: open->analyzed

fixed, thanks! 


Comment 2 dd freebsd_committer freebsd_triage 2001-07-24 13:33:11 UTC
Responsible Changed
From-To: freebsd-bugs->dd

My MFC reminder.
Comment 3 dd freebsd_committer freebsd_triage 2001-07-31 01:00:19 UTC
State Changed
From-To: analyzed->closed

MFC'd