Browse Source

[2357] Update the scaffolding which message compiler generates

Mukund Sivaraman 12 years ago
parent
commit
6d13586173
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/log/compiler/message.cc

+ 1 - 1
src/lib/log/compiler/message.cc

@@ -134,7 +134,7 @@ sentinel(Filename& file) {
 
     string name = file.name();
     string ext = file.extension();
-    string sentinel_text = "__" + name + "_" + ext.substr(1);
+    string sentinel_text = name + "_" + ext.substr(1);
     isc::util::str::uppercase(sentinel_text);
     return (sentinel_text);
 }