Bug 113074 - [patch] ppp(8): include <strings.h> for strcasecmp(3)
Summary: [patch] ppp(8): include <strings.h> for strcasecmp(3)
Status: Closed Overcome By Events
Alias: None
Product: Base System
Classification: Unclassified
Component: bin (show other bugs)
Version: 6.0-STABLE
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-05-28 06:30 UTC by Roman Bogorodskiy
Modified: 2015-06-14 05:28 UTC (History)
0 users

See Also:


Attachments
ppp_strings.h.diff (5.83 KB, patch)
2007-05-28 06:30 UTC, Roman Bogorodskiy
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Roman Bogorodskiy freebsd_committer freebsd_triage 2007-05-28 06:30:02 UTC
	strcasecmp(3) function moved from string.h to strings.h for
	IEEE Std 1003.1-2001 (``POSIX.1'') compliance. However,
	ppp(8) doesn't include strings.h header. It still compiles
	without warnings because string.h includes strings.h for
	compatibility, but I think it would be better to include
	strings.h explicitly.

	Noted by:	Slava Semushin