mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-21 14:47:03 +01:00
From stable branch
* gpgkeys_ldap.c (send_key): Removed non-constant initializers.
This commit is contained in:
parent
37f29e8102
commit
e18ddb60ff
@ -1,3 +1,7 @@
|
||||
2002-09-26 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* gpgkeys_ldap.c (send_key): Removed non-constant initializers.
|
||||
|
||||
2002-09-24 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* gpgkeys_ldap.c (ldap_err_to_gpg_err, ldap_to_gpg_err, send_key,
|
||||
|
@ -110,19 +110,14 @@ send_key(int *eof)
|
||||
char line[MAX_LINE];
|
||||
char *key[2]={NULL,NULL};
|
||||
char keyid[17];
|
||||
#ifndef __riscos__
|
||||
LDAPMod mod={LDAP_MOD_ADD,pgpkeystr,{key}},*attrs[2]={&mod,NULL};
|
||||
#else
|
||||
LDAPMod mod, *attrs[2];
|
||||
|
||||
memset (&mod, 0, sizeof mod);
|
||||
mod.mod_op = LDAP_MOD_ADD;
|
||||
mod.mod_type = pgpkeystr;
|
||||
mod.mod_values = 0;
|
||||
mod.mod_bvalues = 0;
|
||||
|
||||
mod.mod_values = key;
|
||||
attrs[0] = &mod;
|
||||
attrs[1] = NULL;
|
||||
#endif
|
||||
|
||||
dn=malloc(strlen("pgpCertid=virtual,")+strlen(basekeyspacedn)+1);
|
||||
if(dn==NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user