diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-07 17:44:42 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-07 17:44:42 -0800 |
commit | 6e995e4f8c5884795ad5c524c670c5073f8af359 (patch) | |
tree | ea233cc29bce26927675464c905d7ecf5d89ff8e | |
parent | 42cfffae80480eae4381902fff3f7c61f858a933 (diff) | |
download | samba-6e995e4f8c5884795ad5c524c670c5073f8af359.tar.gz samba-6e995e4f8c5884795ad5c524c670c5073f8af359.tar.bz2 samba-6e995e4f8c5884795ad5c524c670c5073f8af359.zip |
Add define guards around FSTRING_LEN.
Jeremy.
(This used to be commit ea8633689d43cc2fe15aedb430b4cac38fa73d14)
-rw-r--r-- | source3/include/includes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index c3c9dca9cf..4e420881ae 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -636,8 +636,10 @@ struct timespec { _________)/\\_//(\/(/\)/\//\/\///|_)_______ */ +#ifndef FSTRING_LEN #define FSTRING_LEN 256 typedef char fstring[FSTRING_LEN]; +#endif /* Lists, trees, caching, database... */ #include "xfile.h" |