summaryrefslogtreecommitdiff
path: root/package/samba/samba-add-check-for-__use_bsd.patch
diff options
context:
space:
mode:
authorSven Neumann <s.neumann@raumfeld.com>2011-09-13 10:42:07 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-09-13 21:31:55 +0200
commitb25b711e4a62095817e415c4961ea5530c28876e (patch)
tree0406c2a09f8281a747631fc4bd9173aff548c435 /package/samba/samba-add-check-for-__use_bsd.patch
parentab6b9e77fed118acb8a757d947708fc1773d21dc (diff)
samba: bump to 3.5.11
Bump to version 3.5.11 and also update the download location. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/samba/samba-add-check-for-__use_bsd.patch')
-rw-r--r--package/samba/samba-add-check-for-__use_bsd.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/package/samba/samba-add-check-for-__use_bsd.patch b/package/samba/samba-add-check-for-__use_bsd.patch
deleted file mode 100644
index a4c7109cf..000000000
--- a/package/samba/samba-add-check-for-__use_bsd.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/source/client/mount.cifs.c 2009-04-01 13:48:54.000000000 +0200
-+++ b/source/client/mount.cifs.c 2009-04-20 12:59:57.000000000 +0200
-@@ -100,6 +100,7 @@
-
- /* glibc doesn't have strlcpy, strlcat. Ensure we do. JRA. We
- * don't link to libreplace so need them here. */
-+#if defined(__GLIBC__) && !(defined(__UCLIBC__) && defined(__USE_BSD))
-
- /* like strncpy but does not 0 fill the buffer and always null
- * terminates. bufsize is the size of the destination buffer */
-@@ -181,6 +182,7 @@
- SAFE_FREE(mountpassword);
- exit(EX_USAGE);
- }
-+#endif /* __GLIBC__ && !(__UCLIBC__ && __USE_BSD) */
-
- /* caller frees username if necessary */
- static char * getusername(void) {