diff options
author | Valery Kartel <valery.kartel@gmail.com> | 2015-10-07 12:36:06 +0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-09 07:49:38 +0000 |
commit | 623cd2f09168d1e4b21dabba32eb7f6c9be3c871 (patch) | |
tree | 4f26eff5c62a9b8195dda920d3f292a0bc21258b /testing/csync2/rsync-strlcpy-disable.patch | |
parent | 3711b284147fb68eecdc7c8433daa1219cfcb440 (diff) | |
download | aports-623cd2f09168d1e4b21dabba32eb7f6c9be3c871.tar.bz2 aports-623cd2f09168d1e4b21dabba32eb7f6c9be3c871.tar.xz |
testing/csync2: fix strlcpy patch and disable ssl by default
csync2 needs a certificate to work with ssl. Disable ssl in default
config til we have a proper openssl config to generate cert.
Diffstat (limited to 'testing/csync2/rsync-strlcpy-disable.patch')
-rw-r--r-- | testing/csync2/rsync-strlcpy-disable.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/csync2/rsync-strlcpy-disable.patch b/testing/csync2/rsync-strlcpy-disable.patch deleted file mode 100644 index 5d28e1da29..0000000000 --- a/testing/csync2/rsync-strlcpy-disable.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- old/rsync.c -+++ new/rsync.c -@@ -48,7 +48,7 @@ - * @param bufsize is the size of the destination buffer. - * - * @return index of the terminating byte. -- **/ -+ * disabled - static size_t strlcpy(char *d, const char *s, size_t bufsize) - { - size_t len = strlen(s); -@@ -61,7 +61,7 @@ - } - return ret; - } -- -+ **/ - /* splits filepath at the last '/', if any, like so: - * dirname basename filepath - * "/" "" "/" |