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

common: Remove superfluous statements.

* common/exechelp-posix.c: Remove weak pragmas.
* common/sexputil.c (make_canon_sexp_from_rsa_pk): Remove double
const.
--

We do not use Pth anymore and thus there is no more need for the weak
pragmas.
This commit is contained in:
Werner Koch 2014-09-18 15:49:44 +02:00
parent 6e7bcabd78
commit cad181b5ec
2 changed files with 3 additions and 12 deletions

View file

@ -370,9 +370,9 @@ make_canon_sexp_from_rsa_pk (const void *m_arg, size_t mlen,
char mlen_str[35];
char elen_str[35];
unsigned char *keybuf, *p;
const char const part1[] = "(10:public-key(3:rsa(1:n";
const char const part2[] = ")(1:e";
const char const part3[] = ")))";
const char part1[] = "(10:public-key(3:rsa(1:n";
const char part2[] = ")(1:e";
const char part3[] = ")))";
/* Remove leading zeroes. */
for (; mlen && !*m; mlen--, m++)