aboutsummaryrefslogtreecommitdiffstats
path: root/g10/g10.c
diff options
context:
space:
mode:
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;
}