From: Maxim Mamontov Date: Thu, 1 Dec 2011 15:01:37 +0000 (+0200) Subject: Register smux plugin as .stg24, not as a root X-Git-Tag: 2.408~35 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/a8c0ec7842337a96c32fa24919c2564b2b36f3fb?ds=sidebyside Register smux plugin as .stg24, not as a root --- diff --git a/doc/help.odt b/doc/help.odt index a93fa0a4..52ef84d6 100644 Binary files a/doc/help.odt and b/doc/help.odt differ diff --git a/projects/stargazer/plugins/other/smux/utils.cpp b/projects/stargazer/plugins/other/smux/utils.cpp index 18e2bf31..91e40985 100644 --- a/projects/stargazer/plugins/other/smux/utils.cpp +++ b/projects/stargazer/plugins/other/smux/utils.cpp @@ -79,7 +79,9 @@ memset(&msg, 0, sizeof(msg)); msg.present = OpenPDU_PR_simple; asn_long2INTEGER(&msg.choice.simple.version, SimpleOpen__version_version_1); -if (!String2OI(PEN_PREFIX, &msg.choice.simple.identity)) +std::string pen(PEN_PREFIX); +pen += ".1"; +if (!String2OI(pen.c_str(), &msg.choice.simple.identity)) { printfd(__FILE__, "SendOpenPDU() - failed to convert string to OBJECT_IDENTIFIER\n");