aboutsummaryrefslogtreecommitdiff
path: root/lib/cmyth
diff options
context:
space:
mode:
authorDavid Teirney <david@teirney.net>2012-06-24 13:28:13 +1200
committerDavid Teirney <david@teirney.net>2012-07-09 23:27:24 +1200
commite60e3ba98a9ba85291b79bad21a0b66e621282ca (patch)
tree367fc47fc98c0301da3685badccf5802d9fc01de /lib/cmyth
parent174e3e84e1e6b57b137b234cf4110d2529a49608 (diff)
[libcmyth] Cosmetic: pull across MVP -> CMYTH naming changes from upstream for safe_string.h.
Diffstat (limited to 'lib/cmyth')
-rw-r--r--lib/cmyth/libcmyth/safe_string.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cmyth/libcmyth/safe_string.h b/lib/cmyth/libcmyth/safe_string.h
index 8110ef658b..3efa9a1576 100644
--- a/lib/cmyth/libcmyth/safe_string.h
+++ b/lib/cmyth/libcmyth/safe_string.h
@@ -17,12 +17,12 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/** \file mvp_string.h
+/** \file safe_string.h
* Some basic string handling routines to help avoid segfaults/buffer overflows
*/
-#ifndef __MVP_STRING_H
-#define __MVP_STRING_H
+#ifndef __CMYTH_STRING_H
+#define __CMYTH_STRING_H
#include <stdio.h>
@@ -46,4 +46,4 @@ static inline char * safe_strncpy(char *dest,const char *src,size_t n)
#define safe_atoll(str) (((str) == NULL)? (long long)0: atoll(str))
#define safe_atoi(str) (((str) == NULL)? (int)0: atoi(str))
-#endif /* __MVP_STRING_H */
+#endif /* __CMYTH_STRING_H */