2008-12-12 10:09:51 +01:00
|
|
|
--- a/source/client/mount.cifs.c
|
|
|
|
+++ b/source/client/mount.cifs.c
|
2009-01-13 08:29:35 +01:00
|
|
|
@@ -96,6 +96,7 @@ char * prefixpath = NULL;
|
2008-12-12 10:09:51 +01:00
|
|
|
|
|
|
|
/* 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 */
|
2009-01-13 08:29:35 +01:00
|
|
|
@@ -177,6 +178,7 @@ static void mount_cifs_usage(void)
|
|
|
|
SAFE_FREE(mountpassword);
|
|
|
|
exit(EX_USAGE);
|
2008-12-12 10:09:51 +01:00
|
|
|
}
|
|
|
|
+#endif /* __GLIBC__ && !(__UCLIBC__ && __USE_BSD) */
|
|
|
|
|
2009-01-13 08:29:35 +01:00
|
|
|
/* caller frees username if necessary */
|
|
|
|
static char * getusername(void) {
|