mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-09 12:54:23 +01:00
* g10.c (add_group): Use '=' to separate group name from group members.
Use a better error message for when no = is found. * hkp.c (hkp_export): Use CRLF in headers.
This commit is contained in:
parent
b20b90d225
commit
d8eda8dbd1
@ -1,3 +1,10 @@
|
|||||||
|
2002-09-09 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* g10.c (add_group): Use '=' to separate group name from group
|
||||||
|
members. Use a better error message for when no = is found.
|
||||||
|
|
||||||
|
* hkp.c (hkp_export): Use CRLF in headers.
|
||||||
|
|
||||||
2002-09-03 David Shaw <dshaw@jabberwocky.com>
|
2002-09-03 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* mainproc.c (print_pkenc_list): Don't increment the error counter
|
* mainproc.c (print_pkenc_list): Don't increment the error counter
|
||||||
|
@ -816,10 +816,10 @@ static void add_group(char *string)
|
|||||||
STRLIST values=NULL;
|
STRLIST values=NULL;
|
||||||
|
|
||||||
/* Break off the group name */
|
/* Break off the group name */
|
||||||
name=strsep(&string," ");
|
name=strsep(&string,"=");
|
||||||
if(string==NULL)
|
if(string==NULL)
|
||||||
{
|
{
|
||||||
log_error(_("no values for group \"%s\"\n"),name);
|
log_error(_("no = sign found in group definition \"%s\"\n"),name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ hkp_export( STRLIST users )
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf( request, "Content-Length: %u\n",
|
sprintf( request, "Content-Length: %u\r\n",
|
||||||
(unsigned)iobuf_get_temp_length(temp) + 9 );
|
(unsigned)iobuf_get_temp_length(temp) + 9 );
|
||||||
iobuf_writestr( hd.fp_write, request );
|
iobuf_writestr( hd.fp_write, request );
|
||||||
m_free( request );
|
m_free( request );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user