diff options
author | Sumit Bose <sbose@redhat.com> | 2010-10-07 13:10:08 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-10-13 07:56:20 -0400 |
commit | 50b2537f88bfe1d1eacd25818bbac50aec86d21c (patch) | |
tree | 1a7391e86674f2a0ee76b35862fb3c9b09341068 | |
parent | daa53f46d3ddcba0cbe2d23251c250794e576cf1 (diff) | |
download | sssd-50b2537f88bfe1d1eacd25818bbac50aec86d21c.tar.gz sssd-50b2537f88bfe1d1eacd25818bbac50aec86d21c.tar.xz sssd-50b2537f88bfe1d1eacd25818bbac50aec86d21c.zip |
Add a missing include file
strcasecmp() is defined in strings.h which might not be included under
certain conditions.
-rw-r--r-- | src/util/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/util.h b/src/util/util.h index a15cecbd7..e93f6f863 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -26,6 +26,7 @@ #include <stdbool.h> #include <unistd.h> #include <string.h> +#include <strings.h> #include <errno.h> #include <libintl.h> #include <limits.h> |