49 lines
1.3 KiB
Diff
49 lines
1.3 KiB
Diff
|
|
From 0c7ded471fdd2a130edfb265279663c68cfd2a3c Mon Sep 17 00:00:00 2001
|
||
|
|
From: Iker Pedrosa <ipedrosa@redhat.com>
|
||
|
|
Date: Tue, 10 May 2022 15:26:15 +0200
|
||
|
|
Subject: [PATCH] Add header guards
|
||
|
|
|
||
|
|
Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
|
||
|
|
|
||
|
|
Reference: https://github.com/shadow-maint/shadow/commit/0c7ded471fdd2a130edfb265279663c68cfd2a3c
|
||
|
|
Conflict: shadowlog_internal.h is not currently available, and run_part.h is adapted
|
||
|
|
---
|
||
|
|
lib/pwauth.h | 5 +++++
|
||
|
|
lib/run_part.h | 5 +++++
|
||
|
|
2 files changed, 10 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/lib/pwauth.h b/lib/pwauth.h
|
||
|
|
index fb205b71..b610025d 100644
|
||
|
|
--- a/lib/pwauth.h
|
||
|
|
+++ b/lib/pwauth.h
|
||
|
|
@@ -34,6 +34,9 @@
|
||
|
|
* $Id$
|
||
|
|
*/
|
||
|
|
|
||
|
|
+#ifndef _PWAUTH_H
|
||
|
|
+#define _PWAUTH_H
|
||
|
|
+
|
||
|
|
#ifndef USE_PAM
|
||
|
|
int pw_auth (const char *cipher,
|
||
|
|
const char *user,
|
||
|
|
@@ -64,3 +67,5 @@ int pw_auth (const char *cipher,
|
||
|
|
#define PW_RLOGIN 202
|
||
|
|
#define PW_FTP 203
|
||
|
|
#define PW_REXEC 204
|
||
|
|
+
|
||
|
|
+#endif /* _PWAUTH_H */
|
||
|
|
diff --git a/lib/run_part.h b/lib/run_part.h
|
||
|
|
index 0b68dbfc..6422134c 100644
|
||
|
|
--- a/lib/run_part.h
|
||
|
|
+++ b/lib/run_part.h
|
||
|
|
@@ -1,2 +1,7 @@
|
||
|
|
+#ifndef _RUN_PART_H
|
||
|
|
+#define _RUN_PART_H
|
||
|
|
+
|
||
|
|
int run_part (char *script_path, char *name, char *action);
|
||
|
|
int run_parts (char *directory, char *name, char *action);
|
||
|
|
+
|
||
|
|
+#endif /* _RUN_PART_H */
|
||
|
|
--
|
||
|
|
2.23.0
|