This is an automated email from the ASF dual-hosted git repository.
phrocker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/master by this push:
new b051d7e change CapturePacket header guard to be unique
b051d7e is described below
commit b051d7ec8b92518f7f0887ff380cfbe6b42cd76c
Author: Otto Fowler <[email protected]>
AuthorDate: Wed Dec 4 18:17:00 2019 -0500
change CapturePacket header guard to be unique
per review, comment end of header guard
This closes #689.
Signed-off-by: Marc Parisi <[email protected]>
---
extensions/pcap/CapturePacket.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/extensions/pcap/CapturePacket.h b/extensions/pcap/CapturePacket.h
index 6dfd276..26f499a 100644
--- a/extensions/pcap/CapturePacket.h
+++ b/extensions/pcap/CapturePacket.h
@@ -16,8 +16,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-#ifndef __INVOKE_HTTP_H__
-#define __INVOKE_HTTP_H__
+#ifndef EXTENSIONS_CAPTUREPACKET_H
+#define EXTENSIONS_CAPTUREPACKET_H
#include <memory>
#include <regex>
@@ -175,4 +175,4 @@ REGISTER_RESOURCE(CapturePacket, "CapturePacket captures
and writes one or more
} /* namespace apache */
} /* namespace org */
-#endif
+#endif /* EXTENSIONS_CAPTUREPACKET_H */