From: Niels Möller Date: Thu, 7 Nov 2002 08:30:24 +0000 (+0100) Subject: (rsa_keypair_to_sexp): %s -> %z renaming. X-Git-Tag: nettle_1.7_release_20030311~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3848a07bc3cb72c0de6427dd0c7e262a591d362;p=thirdparty%2Fnettle.git (rsa_keypair_to_sexp): %s -> %z renaming. Rev: src/nettle/rsa2sexp.c:1.3 --- diff --git a/rsa2sexp.c b/rsa2sexp.c index eb6f7e89..1bb45de4 100644 --- a/rsa2sexp.c +++ b/rsa2sexp.c @@ -39,13 +39,13 @@ rsa_keypair_to_sexp(struct nettle_buffer *buffer, { if (priv) return sexp_format(buffer, - "(%s(%s(%s%b)(%s%b)(%s%b)" - "(%s%b)(%s%b)(%s%b)(%s%b)(%s%b)))", + "(%z(%z(%z%b)(%z%b)(%z%b)" + "(%z%b)(%z%b)(%z%b)(%z%b)(%z%b)))", "private-key", "rsa", "n", pub->n, "e", pub->e, "d", priv->d, "p", priv->p, "q", priv->q, "a", priv->a, "b", priv->b, "c", priv->c); else - return sexp_format(buffer, "(%s(%s(%s%b)(%s%b)))", + return sexp_format(buffer, "(%z(%z(%z%b)(%z%b)))", "public-key", "rsa", "n", pub->n, "e", pub->e); }