From ce21d0804012da27cec72abe896352d7f0e7e1e5 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 8 Aug 2012 15:56:58 -0700 Subject: Fix strlower_m() to return an error indication. --- source3/include/proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include') diff --git a/source3/include/proto.h b/source3/include/proto.h index bfb9b37fd5..9af72a190b 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -701,7 +701,7 @@ char *strchr_m(const char *src, char c); char *strrchr_m(const char *s, char c); char *strnrchr_m(const char *s, char c, unsigned int n); char *strstr_m(const char *src, const char *findstr); -void strlower_m(char *s); +bool strlower_m(char *s); bool strupper_m(char *s); size_t strlen_m(const char *s); size_t strlen_m_term(const char *s); -- cgit