1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
Date: Sun, 11 Dec 2022 19:05:47 +0100
Subject: [PATCH] fix implicit function declarations
Clang16 will not allow implicit function declarations by default.
This patch add the declarations to make this package build with
Clang16 defaults.
Also patches some -Wreturn-type while at it.
Bug: https://bugs.gentoo.org/882229
Bug: https://bugs.gentoo.org/740852
Patch has been sent upstream via mail.
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
--- a/common.h
+++ b/common.h
@@ -370,3 +370,5 @@ void finish_sasl_redirection(tsasl_defaults *);
tsasl_defaults *sasl_defaults_new(bind_options *bind_options);
void sasl_defaults_free(tsasl_defaults *sd);
int ldapvi_sasl_interact(LDAP *ld, unsigned flags, void *defaults, void *p);
+
+void fdcp(int fdsrc, int fddst);
--- a/diff.c
+++ b/diff.c
@@ -18,6 +18,7 @@
#include "common.h"
#include "config.h"
+char ldap_bv2dn_x (struct berval *bv, LDAPDN *dn, unsigned flags);
typedef void (*note_function)(void *, void *, void *);
static void
--- a/parse.c
+++ b/parse.c
@@ -17,6 +17,7 @@
*/
#define _XOPEN_SOURCE
#include <unistd.h>
+#include <crypt.h>
#include "common.h"
#define fast_g_string_append_c(gstring, c) \
--- a/error.c
+++ b/error.c
@@ -14,6 +14,9 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+
+#define LDAP_DEPRECATED 1
+
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
--- a/port.c
+++ b/port.c
@@ -35,6 +35,7 @@
#if defined(HAVE_OPENSSL)
#include <openssl/sha.h>
#include <openssl/md5.h>
+#include <openssl/rand.h>
#elif defined(HAVE_GNUTLS)
#include <gnutls/gnutls.h>
#include <gnutls/openssl.h>
--- a/ldapvi.c
+++ b/ldapvi.c
@@ -1470,7 +1470,7 @@ copy_sasl_output(FILE *out, char *sasl)
int line = 0;
int c;
- if (lstat(sasl, &st) == -1) return;
+ if (lstat(sasl, &st) == -1) return -1;
if ( !(in = fopen(sasl, "r"))) syserr();
if (st.st_size > 0) {
--- a/misc.c
+++ b/misc.c
@@ -585,7 +585,7 @@ dialog_rebuild(char *up, char *clreos,
putp(up);
}
-static Keymap
+static void
set_meta_keymap(Keymap keymap, Keymap meta_keymap)
{
if (!meta_keymap)
|