1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* options.skel: Fix a few typos, clarify "group", and remove sample photo

viewers for Win32 since they are the defaults now.

* parse-packet.c (make_attribute_uidname), keylist.c (dump_attribs): Fix
two typecast warnings.
This commit is contained in:
David Shaw 2002-07-01 16:47:22 +00:00
parent b672df87d6
commit db765c90d8
4 changed files with 17 additions and 13 deletions

View file

@ -1844,7 +1844,8 @@ make_attribute_uidname(PKT_user_id *uid)
sprintf(uid->name,"[invalid image]");
}
else
sprintf(uid->name,"[unknown attribute of size %lu]",uid->attribs->len);
sprintf(uid->name,"[unknown attribute of size %lu]",
(ulong)uid->attribs->len);
}
uid->len = strlen(uid->name);