diff options
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/pam_ssh/pam_ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/pam_ssh/pam_ssh.c b/crypto/openssh/pam_ssh/pam_ssh.c index 72c3a4e..92ab308 100644 --- a/crypto/openssh/pam_ssh/pam_ssh.c +++ b/crypto/openssh/pam_ssh/pam_ssh.c @@ -86,11 +86,11 @@ ssh_cleanup(pam_handle_t *pamh, void *data, int error_status) * environ at an array of one element equal to NULL). */ -SLIST_HEAD(env_head, env_entry); +SLIST_HEAD(env_head, struct env_entry); struct env_entry { char *ee_env; - SLIST_ENTRY(env_entry) ee_entries; + SLIST_ENTRY(struct env_entry) ee_entries; }; typedef struct env { |