Author: tfaber
Date: Sat Apr 16 11:43:57 2016
New Revision: 71169

URL: http://svn.reactos.org/svn/reactos?rev=71169&view=rev
Log:
[RTL]
- Silence noisy DPRINTs

Modified:
    trunk/reactos/lib/rtl/actctx.c

Modified: trunk/reactos/lib/rtl/actctx.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/actctx.c?rev=71169&r1=71168&r2=71169&view=diff
==============================================================================
--- trunk/reactos/lib/rtl/actctx.c      [iso-8859-1] (original)
+++ trunk/reactos/lib/rtl/actctx.c      [iso-8859-1] Sat Apr 16 11:43:57 2016
@@ -1407,8 +1407,8 @@
         }
         else if (xmlstr_cmp(&attr_name, languageW))
         {
-            DPRINT1("Unsupported yet language attribute (%.*S)\n",
-                    attr_value.len, attr_value.ptr);
+            DPRINT("Unsupported yet language attribute (%.*S)\n",
+                   attr_value.len, attr_value.ptr);
             if (!(ai->language = xmlstrdupW(&attr_value))) return FALSE;
         }
         else
@@ -2435,6 +2435,12 @@
                 }
             }
         }
+#ifdef __REACTOS__
+        else if (xml_elem_cmp(&elem, L"trustInfo", asmv1W))
+        {
+            ret = parse_unknown_elem(xmlbuf, &elem);
+        }
+#endif
         else
         {
             attr_nameU = xmlstr2unicode(&elem);


Reply via email to