From: Maxim Mamontov <faust.madf@gmail.com>
Date: Fri, 26 Jul 2013 17:54:38 +0000 (+0300)
Subject: Small fix.
X-Git-Tag: 2.409~353
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/aab10975560853c3482eb0e0deca11acbc323a1c?ds=sidebyside;hp=-c

Small fix.
---

aab10975560853c3482eb0e0deca11acbc323a1c
diff --git a/stglibs/srvconf.lib/parser.cpp b/stglibs/srvconf.lib/parser.cpp
index 62537359..284e1127 100644
--- a/stglibs/srvconf.lib/parser.cpp
+++ b/stglibs/srvconf.lib/parser.cpp
@@ -848,8 +848,8 @@ else
         {
         if (strcasecmp(el, "Auth") == 0)
             {
-            if (attr && attr[0])
-                list.push_back(attr[0]);
+            if (attr && attr[0] && attr[1])
+                list.push_back(attr[1]);
             return 0;
             }
         }
diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp
index 078466d7..0ca3028c 100644
--- a/stglibs/srvconf.lib/servconf.cpp
+++ b/stglibs/srvconf.lib/servconf.cpp
@@ -379,7 +379,6 @@ return st_ok;
 //-----------------------------------------------------------------------------
 int SERVCONF::Start(const char *el, const char **attr)
 {
-printfd(__FILE__, "<%s>\n", el);
 currParser->ParseStart(el, attr);
 return 0;
 }