diff --git a/src/openvpn/common.h b/src/openvpn/common.h
index 4e6f4809..623b3e0d 100644
--- a/src/openvpn/common.h
+++ b/src/openvpn/common.h
@@ -88,12 +88,6 @@ typedef unsigned long ptr_type;
  */
 #define PUSH_REQUEST_INTERVAL 5
 
-/*
- * A sort of pseudo-filename for data provided inline within
- * the configuration file.
- */
-#define INLINE_FILE_TAG "[[INLINE]]"
-
 /*
  * Script security warning
  */
diff --git a/src/openvpn/crypto.c b/src/openvpn/crypto.c
index 672aa14a..f1a52d8c 100644
--- a/src/openvpn/crypto.c
+++ b/src/openvpn/crypto.c
@@ -1189,7 +1189,7 @@ print_key_filename(const char *str, bool is_inline)
 {
     if (is_inline)
     {
-        return INLINE_FILE_TAG;
+        return "[[INLINE]]";
     }
 
     return np(str);
