aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-01 18:16:41 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2010-12-01 18:16:41 +0000
commit6ce9b00b1158dbf29c00cbff08c6f8901582fbf3 (patch)
treefe6b7026f98e8d11e129b7b0636ebe606e16a0cd /wsutil
parent3099a64e3d230658d4c35c3cc44d5699356e054f (diff)
Add #ifndef __PRIVILEGES_H__ / #define / #endif logic to prevent multiple
inclusions of privileges.h. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35092 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/privileges.h5
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__ */