mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
27 lines
769 B
Diff
27 lines
769 B
Diff
Patch-Source: https://github.com/latchset/clevis/commit/8df2210de3db3b6caff856eb6dfa4dea127a2bbb
|
|
|
|
From 8df2210de3db3b6caff856eb6dfa4dea127a2bbb Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Davies <jd+github@upthedownstair.com>
|
|
Date: Mon, 8 Nov 2021 10:19:19 +0000
|
|
Subject: [PATCH] sss.h: Added include so pid_t type is correctly defined.
|
|
(#349)
|
|
|
|
Closes: #345
|
|
|
|
Signed-off-by: Jonathan Davies <jpds@protonmail.com>
|
|
---
|
|
src/pins/sss/sss.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/pins/sss/sss.h b/src/pins/sss/sss.h
|
|
index 66a49091..81faf791 100644
|
|
--- a/src/pins/sss/sss.h
|
|
+++ b/src/pins/sss/sss.h
|
|
@@ -20,6 +20,7 @@
|
|
#pragma once
|
|
#include <jansson.h>
|
|
#include <stdint.h>
|
|
+#include <sys/types.h>
|
|
|
|
json_t *
|
|
sss_generate(size_t key_bytes, size_t threshold);
|