chiark
/
gitweb
/
~mdw
/
catacomb-python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
9acb0b5
)
pubkey.c: Fix keyword-argument order for KCDSAPriv constructor.
author
Mark Wooding
<mdw@distorted.org.uk>
Sun, 28 May 2017 18:03:08 +0000
(19:03 +0100)
committer
Mark Wooding
<mdw@distorted.org.uk>
Thu, 15 Jun 2017 23:47:45 +0000
(
00:47
+0100)
pubkey.c
patch
|
blob
|
blame
|
history
diff --git
a/pubkey.c
b/pubkey.c
index e0e8dc95b72577b832890fb1a92baa722e680d6e..90a29b3df5e5a5e8144d003644f52f37a116ea7e 100644
(file)
--- a/
pubkey.c
+++ b/
pubkey.c
@@
-344,7
+344,7
@@
static PyObject *kcdsapriv_pynew(PyTypeObject *ty,
{
PyObject *G, *u, *p = 0, *rng = rand_pyobj, *hash = has160_pyobj;
PyObject *rc = 0;
{
PyObject *G, *u, *p = 0, *rng = rand_pyobj, *hash = has160_pyobj;
PyObject *rc = 0;
- char *kwlist[] = { "G", "
p", "u
", "hash", "rng", 0 };
+ char *kwlist[] = { "G", "
u", "p
", "hash", "rng", 0 };
if (!PyArg_ParseTupleAndKeywords(arg, kw, "O!O|O!O!O!:new", kwlist,
group_pytype, &G,
if (!PyArg_ParseTupleAndKeywords(arg, kw, "O!O|O!O!O!:new", kwlist,
group_pytype, &G,