diff options
author | Gerald Carter <jerry@samba.org> | 2006-02-08 04:11:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:09:57 -0500 |
commit | a988be716b87b0dca69688ed3b909af0a69e91f6 (patch) | |
tree | d3726b770b51644ba2c546f82708b65eec2fb1cb /source3/modules | |
parent | 4379662d91b77c76aa41e054499b9a1707f1d1af (diff) | |
download | samba-a988be716b87b0dca69688ed3b909af0a69e91f6.tar.gz samba-a988be716b87b0dca69688ed3b909af0a69e91f6.tar.bz2 samba-a988be716b87b0dca69688ed3b909af0a69e91f6.zip |
r13384: Adding in some more SuSE patches
* uninitialized-variables.diff
* samba-smbadduser.diff
* samba-implicit_decl.patch
(This used to be commit 064338c6f5644d1ceddf341d4ba5619a3d68ffa7)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/getdate.c | 1 | ||||
-rw-r--r-- | source3/modules/getdate.y | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/getdate.c b/source3/modules/getdate.c index 491c51294e..51211f316d 100644 --- a/source3/modules/getdate.c +++ b/source3/modules/getdate.c @@ -138,6 +138,7 @@ #endif #include <ctype.h> +#include <string.h> #if HAVE_STDLIB_H # include <stdlib.h> /* for `free'; used by Bison 1.27 */ diff --git a/source3/modules/getdate.y b/source3/modules/getdate.y index aab37f4d23..60b1aa577e 100644 --- a/source3/modules/getdate.y +++ b/source3/modules/getdate.y @@ -43,6 +43,7 @@ #endif #include <ctype.h> +#include <string.h> #if HAVE_STDLIB_H # include <stdlib.h> /* for `free'; used by Bison 1.27 */ |