Holger Jeromin 10 年 前
コミット
87ae90c61f
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2 2
      src/server/ua_server.c

+ 2 - 2
src/server/ua_server.c

@@ -120,7 +120,7 @@ static void UA_Server_cleanup(UA_Server *server, void *nothing) {
     UA_SecureChannelManager_cleanupTimedOut(&server->secureChannelManager, now);
 }
 
-#define MANUFACRURER_NAME "open62541"
+#define MANUFACTURER_NAME "open62541"
 #define PRODUCT_NAME "open62541 OPC UA Server"
 #define STRINGIFY(x) #x //some magic
 #define TOSTRING(x) STRINGIFY(x) //some magic
@@ -129,7 +129,7 @@ static void UA_Server_cleanup(UA_Server *server, void *nothing) {
 
 static void getBulidInfo(const UA_Server* server, UA_BuildInfo *buildInfo){
     buildInfo->productUri = UA_STRING_ALLOC(PRODUCT_URI);
-    buildInfo->manufacturerName = UA_STRING_ALLOC(MANUFACRURER_NAME);
+    buildInfo->manufacturerName = UA_STRING_ALLOC(MANUFACTURER_NAME);
     buildInfo->productName = UA_STRING_ALLOC(PRODUCT_NAME);
     buildInfo->softwareVersion = UA_STRING_ALLOC(SOFTWARE_VERSION);
     buildInfo->buildNumber = UA_STRING_ALLOC(BUILD_NUMBER);