From b9d15e825601b95bf491882b0989452d1eebe2fc Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 5 Apr 2011 11:42:53 -0400 Subject: [PATCH] Add multiple inclusion guard --- plugins/sudoers/sudo_nss.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/sudoers/sudo_nss.h b/plugins/sudoers/sudo_nss.h index b7cd2c472..8d08944a2 100644 --- a/plugins/sudoers/sudo_nss.h +++ b/plugins/sudoers/sudo_nss.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007-2010 + * Copyright (c) 2007-2011 * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -14,6 +14,9 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#ifndef _SUDO_NSS_H +#define _SUDO_NSS_H + struct lbuf; struct passwd; @@ -37,3 +40,5 @@ struct sudo_nss { TQ_DECLARE(sudo_nss) struct sudo_nss_list *sudo_read_nss(void); + +#endif /* _SUDO_NSS_H */