Module: kamailio
Branch: master
Commit: d17a48c186b0b8066518db2106037fe925846d2e
URL:
https://github.com/kamailio/kamailio/commit/d17a48c186b0b8066518db2106037fe…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-12-04T12:49:41+01:00
jansson: fix the include guard in header file
---
Modified: src/modules/jansson/jansson_path.h
---
Diff:
https://github.com/kamailio/kamailio/commit/d17a48c186b0b8066518db2106037fe…
Patch:
https://github.com/kamailio/kamailio/commit/d17a48c186b0b8066518db2106037fe…
---
diff --git a/src/modules/jansson/jansson_path.h b/src/modules/jansson/jansson_path.h
index 9aefb49a00..b31050702d 100644
--- a/src/modules/jansson/jansson_path.h
+++ b/src/modules/jansson/jansson_path.h
@@ -2,12 +2,12 @@
* Copyright (c) 2012 Rogerz Zhang <rogerz.zhang(a)gmail.com>
*
* Jansson is free software; you can redistribute it and/or modify
- * it under the terms of the MIT license.
+ * it under the terms of the MIT license.
*/
-#ifndef _JANSSON_FUNCS_H_
-#define _JANSSON_FUNCS_H_
+#ifndef _JANSSON_PATH_H_
+#define _JANSSON_PATH_H_
#include <jansson.h>
json_t *json_path_get(const json_t *json, const char *path);