diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2010-12-01 18:16:41 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2010-12-01 18:16:41 +0000 |
commit | efc64e43f677ec503c318eb221b8f03e3198b924 (patch) | |
tree | fe6b7026f98e8d11e129b7b0636ebe606e16a0cd /wsutil | |
parent | 100e4ae0252d2f329cdc73f20942fcf18dbc6344 (diff) | |
download | wireshark-efc64e43f677ec503c318eb221b8f03e3198b924.tar.gz wireshark-efc64e43f677ec503c318eb221b8f03e3198b924.tar.bz2 wireshark-efc64e43f677ec503c318eb221b8f03e3198b924.zip |
Add #ifndef __PRIVILEGES_H__ / #define / #endif logic to prevent multiple
inclusions of privileges.h.
svn path=/trunk/; revision=35092
Diffstat (limited to 'wsutil')
-rw-r--r-- | wsutil/privileges.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wsutil/privileges.h b/wsutil/privileges.h index 7526a8ce75..9bb1430c94 100644 --- a/wsutil/privileges.h +++ b/wsutil/privileges.h @@ -22,6 +22,9 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef __PRIVILEGES_H__ +#define __PRIVILEGES_H__ + /** * Called when the program starts, to enable security features and save * whatever credential information we'll need later. @@ -72,3 +75,5 @@ extern gchar *get_cur_groupname(void); */ extern gboolean npf_sys_is_running(); #endif + +#endif /* __PRIVILEGES_H__ */ |