diff options
author | David Timber <mieabby@gmail.com> | 2020-01-11 18:03:47 +1100 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-01-11 18:03:47 +1100 |
commit | 10512fc50e6184397206a41c157c09d9b02e9e1a (patch) | |
tree | 5f0779032edf0f0710400ae6c99b9a3f2977735d /src/proone-list-arch.c | |
parent | 129e12d7685a6ea99fde514ad104a0368a19033d (diff) |
staged resolv_worker
* replaced RNG from `rnd` to `mbedtls_ctr_drbg`
* use of `uint_fastN_t` where appropriate
* heartbeat protocol draft
* improved worker scheduling mech
Diffstat (limited to 'src/proone-list-arch.c')
-rw-r--r-- | src/proone-list-arch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proone-list-arch.c b/src/proone-list-arch.c index e7521ae..c74bb77 100644 --- a/src/proone-list-arch.c +++ b/src/proone-list-arch.c @@ -7,7 +7,7 @@ int main (void) { prne_arch_t i; for (i = PRNE_ARCH_NONE + 1; i < NB_PRNE_ARCH; i += 1) { - printf("%s\n", prne_arch2str(i)); + printf("%s\n", prne_arch_tostr(i)); } return 0; |