diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-08-06 07:38:43 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-08-06 07:38:43 +1000 |
commit | e2aa38a20175430ae1ef7540a8ca7cdf0c4e955e (patch) | |
tree | d7afe015dce284a773bdd14e9c724985068ceb75 | |
parent | 39b015837378b6dca72c477225444e700fe40040 (diff) | |
download | samba-e2aa38a20175430ae1ef7540a8ca7cdf0c4e955e.tar.gz samba-e2aa38a20175430ae1ef7540a8ca7cdf0c4e955e.tar.bz2 samba-e2aa38a20175430ae1ef7540a8ca7cdf0c4e955e.zip |
define uwrap_enabled() on Samba3
s3 doesn't use uwrap yet, but it uses some common coe in lib/, and so
needs a dummy version of the uwrap_enabled() macro
-rw-r--r-- | source3/include/includes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 8fb240f26c..a636716c22 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -1112,4 +1112,7 @@ void in6_addr_to_sockaddr_storage(struct sockaddr_storage *ss, struct in6_addr ip); #endif +/* samba3 doesn't use uwrap yet */ +#define uwrap_enabled() 0 + #endif /* _INCLUDES_H */ |