diff options
author | Josh Durgin <josh.durgin@dreamhost.com> | 2012-01-20 17:02:52 -0800 |
---|---|---|
committer | Josh Durgin <josh.durgin@dreamhost.com> | 2012-01-27 17:07:46 -0800 |
commit | c9cf7b71537e72f3c1139bc7925b7c79a610c0f5 (patch) | |
tree | 14969d2a5ed3abaa795290cdf85113ec290567a4 | |
parent | dbda1b6b24cc0e33562e7e1f34c9e15219ced586 (diff) | |
download | ceph-c9cf7b71537e72f3c1139bc7925b7c79a610c0f5.tar.gz |
admin socket: add include guard
Signed-off-by: Josh Durgin <josh.durgin@dreamhost.com>
-rw-r--r-- | src/common/admin_socket.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/admin_socket.h b/src/common/admin_socket.h index 79f648b146a..e10f32bceb8 100644 --- a/src/common/admin_socket.h +++ b/src/common/admin_socket.h @@ -12,6 +12,9 @@ * */ +#ifndef CEPH_COMMON_ADMIN_SOCKET_H +#define CEPH_COMMON_ADMIN_SOCKET_H + #include "common/config_obs.h" #include "common/Thread.h" #include "common/Mutex.h" @@ -90,4 +93,4 @@ private: friend class HelpHook; }; - +#endif |