Subversion Repositories lsh

Compare Revisions

Ignore whitespace Rev 148 → Rev 149

/trunk/debian/changelog
1,3 → 1,10
lsh-utils (2.1-12) unstable; urgency=medium
 
* nettle3.4.patch: Fix FTBFS with nettle 3.4 due to type changes
(Closes: #884403).
 
-- Magnus Holmgren <holmgren@debian.org> Tue, 09 Jan 2018 21:21:33 +0100
 
lsh-utils (2.1-11) unstable; urgency=low
 
* dont_clear_umask.patch (new): Don't clear umask in lshd, but keep the
/trunk/debian/control
5,7 → 5,7
Uploaders: Stefan Pfetzing <dreamind@dreamind.de>
Standards-Version: 3.9.8
Build-Depends: dpkg-dev (>= 1.15.7), debhelper (>= 9), dh-autoreconf, dh-systemd (>= 1.5), automake,
libgmp-dev, zlib1g-dev | libz-dev, liboop-dev, libxau-dev, nettle-dev (>= 3.0~), nettle-bin,
libgmp-dev, zlib1g-dev | libz-dev, liboop-dev, libxau-dev, nettle-dev (>= 3.4~), nettle-bin,
texinfo (>= 4.2), libkrb5-dev, libwrap0-dev | libwrap-dev,
libpam0g-dev | libpam-dev, libreadline-dev, m4
Homepage: http://www.lysator.liu.se/~nisse/lsh/
/trunk/debian/patches/nettle3.4.patch
0,0 → 1,34
Description: Adjust dummy.c to match type changes in nettle 3.4.
Author: Niels Möller <nisse@lysator.liu.se>
Bug-Debian: https://bugs.debian.org/884403
 
diff --git a/src/dummy.c b/src/dummy.c
index c33c8869..72fd5185 100644
--- a/src/dummy.c
+++ b/src/dummy.c
@@ -113,14 +113,14 @@ base64_encode_init(struct base64_encode_ctx *ctx UNUSED)
size_t
base64_encode_update(struct base64_encode_ctx *ctx UNUSED,
- uint8_t *dst UNUSED,
+ char *dst UNUSED,
size_t length UNUSED,
const uint8_t *src UNUSED)
{ abort(); }
size_t
base64_encode_final(struct base64_encode_ctx *ctx UNUSED,
- uint8_t *dst UNUSED)
+ char *dst UNUSED)
{ abort(); }
void
@@ -132,7 +132,7 @@ base64_decode_update(struct base64_decode_ctx *ctx UNUSED,
size_t *dst_length UNUSED,
uint8_t *dst UNUSED,
size_t src_length UNUSED,
- const uint8_t *src UNUSED)
+ const char *src UNUSED)
{ abort(); }
int
/trunk/debian/patches/series
4,6 → 4,7
bsd_connreset_test_fail.patch
skip-argp.patch
nettle3.patch
nettle3.4.patch
missing_include.patch
mit-kerberos.patch
dont_clear_umask.patch