aboutsummaryrefslogtreecommitdiffstats
path: root/g10/g10.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2002-09-09 19:21:58 +0000
committerDavid Shaw <[email protected]>2002-09-09 19:21:58 +0000
commitd8eda8dbd1955c36b02a98b8e8f1160743846b3c (patch)
treed7e9a516dd5ba4cea117194fbc4f7aae6439b0af /g10/g10.c
parent* NEWS: typo. (diff)
downloadgnupg-d8eda8dbd1955c36b02a98b8e8f1160743846b3c.tar.gz
gnupg-d8eda8dbd1955c36b02a98b8e8f1160743846b3c.zip
* 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.
Diffstat (limited to 'g10/g10.c')
-rw-r--r--g10/g10.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/g10.c b/g10/g10.c
index 1bbf5d592..ca0f28ade 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -816,10 +816,10 @@ static void add_group(char *string)
STRLIST values=NULL;
/* Break off the group name */
- name=strsep(&string," ");
+ name=strsep(&string,"=");
if(string==NULL)
{
- log_error(_("no values for group \"%s\"\n"),name);
+ log_error(_("no = sign found in group definition \"%s\"\n"),name);
return;
}