Formatting

This commit is contained in:
Bandie 2018-10-30 22:05:05 +01:00
parent 01455cac57
commit 6634701bf2
Signed by: Bandie
GPG Key ID: C1E133BC65A822DD
3 changed files with 6 additions and 0 deletions

View File

@ -8,10 +8,12 @@ LICENSE : GNU-GPLv3
#ifndef PAM_PANIC_AUTHDEVICE_H
#define PAM_PANIC_AUTHDEVICE_H
#include "../config.h"
#include <stdint.h>
#include <security/pam_modules.h>
int authDevice(pam_handle_t *pamh, char *allowed, char *rejected, char *serious_dev, int8_t bSerious, int8_t bReboot, int8_t bPoweroff);
#endif

View File

@ -8,6 +8,7 @@ LICENSE : GNU-GPLv3
#ifndef PAM_PANIC_PASSWORD_H
#define PAM_PANIC_PASSWORD_H
#include "../config.h"
#include <stdint.h>
#include <security/pam_modules.h>
@ -19,4 +20,5 @@ LICENSE : GNU-GPLv3
int authPassword(pam_handle_t *pamh, char *serious_dev, int8_t bSerious, int8_t bReboot, int8_t bPoweroff);
#endif

View File

@ -8,9 +8,11 @@ LICENSE : GNU-GPLv3
#ifndef PAM_PANIC_REJECT_H
#define PAM_PANIC_REJECT_H
#include "../config.h"
#include <stdint.h>
int reject(char *serious_dev, int8_t bSerious, int8_t bReboot, int8_t bPoweroff);
#endif