diff options
Diffstat (limited to '')
| -rw-r--r-- | src/auth/pam.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/auth/pam.h b/src/auth/pam.h index ecfe03a..0b85631 100644 --- a/src/auth/pam.h +++ b/src/auth/pam.h @@ -1,7 +1,7 @@ /** * cerberus – Minimal login program * - * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se) + * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (m@maandree.se) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,11 +23,11 @@ /** * Initialise PAM * - * @param remote The remote computer, {@code NULL} for local login + * @param remote The remote computer, `NULL` for local login * @param username The username of the user to log in to * @param reader Function that can be used to read a passphrase from the terminal */ -void initialise_pam(char* remote, char* username, char* (*reader)(void)); +void initialise_pam(char *remote, char *username, char *(*reader)(void)); /** * Verify that the account may be used @@ -53,4 +53,3 @@ char authenticate_pam(void); #endif - |
