libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

commit fdc1410ba7ad62cb9a9508d6226d10d33c2f8845
parent a1807c6e1e7670f0e04454257c90369aebb33943
Author: lash <dev@holbrook.no>
Date:   Wed,  5 Mar 2025 14:57:02 +0000

Fix structs typo

Diffstat:
Msrc/lq/cert.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/lq/cert.c b/src/lq/cert.c @@ -9,8 +9,9 @@ static LQPubKey nokey = { .pk = 0, - .impl = 0; + .impl = 0, }; + static LQMsg nomsg = { .data = "", .len = 0, @@ -19,7 +20,7 @@ static LQMsg nomsg = { }; static LQSig nosig = { .pubkey = &nokey, - .impl = 0; + .impl = 0, }; LQCert* lq_certificate_new(LQCert *parent, LQCtx *ctx, LQMsg *req, LQMsg *rsp) {