From df8b16d7d55d97001ed71f629fc21511ec9f8d3b Mon Sep 17 00:00:00 2001 From: John Dennis Date: Tue, 14 Jul 2009 11:25:37 -0400 Subject: add path_utils filesystem path manipulation utility functions remove trace macro, not needed modifications to satisfy Stephen's checkin review correct spelling of PATH_UTILS_ERROR_NOT_FULLY_NORMALIZED add checks for truncation, return error add checks for getcwd errors modify (dst >= dst_end) test to be (dst > dst_end) remove all use of tabs remove all trailing whitespace add missing truncation check after strncpy() Fix path_utils.pc Also correct a minor typo. --- common/path_utils/path_utils.pc.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/path_utils/path_utils.pc.in (limited to 'common/path_utils/path_utils.pc.in') diff --git a/common/path_utils/path_utils.pc.in b/common/path_utils/path_utils.pc.in new file mode 100644 index 00000000..aaf7531b --- /dev/null +++ b/common/path_utils/path_utils.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: @PACKAGE_NAME@ +Description: Utility functions to manipulate filesystem pathnames +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -lpath_utils +Cflags: -I${includedir} +URL: http://fedorahosted.org/sssd/ -- cgit