diff options
author | James Peach <jpeach@samba.org> | 2007-05-23 20:48:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:45 -0500 |
commit | e85613f915a44f572eb4719f9e22943450c07b26 (patch) | |
tree | 9c7b4cd86e5381fb4b1f3fab38ad634ed4cb4355 /source3/modules | |
parent | 4b04b843affb065f527ea4ee8d6a68b7947ed0b6 (diff) | |
download | samba-e85613f915a44f572eb4719f9e22943450c07b26.tar.gz samba-e85613f915a44f572eb4719f9e22943450c07b26.tar.bz2 samba-e85613f915a44f572eb4719f9e22943450c07b26.zip |
r23098: Fix the case of the #include statements so this module can be built on a
case-sensitive filesystem.
(This used to be commit 0fd0b57107fcdbf7eda85b3f3b969c5dc9eaadc5)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/charset_macosxfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/charset_macosxfs.c b/source3/modules/charset_macosxfs.c index ab6db9319e..6d829beae6 100644 --- a/source3/modules/charset_macosxfs.c +++ b/source3/modules/charset_macosxfs.c @@ -41,8 +41,8 @@ * See if autoconf has found us the internal headers in some form. */ #if HAVE_COREFOUNDATION_CFSTRINGENCODINGCONVERTER_H -# include <Corefoundation/CFStringEncodingConverter.h> -# include <Corefoundation/CFUnicodePrecomposition.h> +# include <CoreFoundation/CFStringEncodingConverter.h> +# include <CoreFoundation/CFUnicodePrecomposition.h> # define USE_INTERNAL_API 1 #elif HAVE_CFSTRINGENCODINGCONVERTER_H # include <CFStringEncodingConverter.h> |