logo

skeud

Simple and portable utilities to deal with user accounts (su, login)git clone https://anongit.hacktivis.me/git/skeud.git/
commit: a6db836fe6eb640fd9a034fe379fcbe9ec5b63b4
parent 90770e9741b3b2ceb69056905c310bf236f04da5
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Mon, 10 Nov 2025 09:20:30 +0100

make format

Diffstat:

Mcommon_test.c7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/common_test.c b/common_test.c @@ -2,15 +2,16 @@ // SPDX-License-Identifier: MPL-2.0 #include "common.h" + #include <stdio.h> int counter = 0; -int err = 0; +int err = 0; static void test_hash_match(int ret, const char *s1, const char *s2) { - int id = ++counter; + int id = ++counter; int got = hash_match(s1, s2); if(got == ret) @@ -28,7 +29,7 @@ test_hash_match(int ret, const char *s1, const char *s2) static void test_crypt_check(int ret, const char *s1, const char *s2) { - int id = ++counter; + int id = ++counter; int got = skeud_crypt_check(s1, s2); if(got == ret)