--- l2_test.c    2001/11/05 20:39:35     1.40
+++ l2_test.c    2001/11/06 15:02:49     1.41
@@ -123,10 +123,10 @@
         die("failed to level of smtp channel");
 
     /* build channel tree */
-    if (l2_channel_link(ch, L2_LINK_CHILDS, chFilter, chPrefix, chBuffer, chFile, NULL) != L2_OK)
-        die("failed to link channels together as a child sequence");
-    if (l2_channel_link(ch, L2_LINK_SIBLINGS, chSyslog, NULL) != L2_OK)
-        die("failed to link filter channel on top of syslog channel");
+    if (l2_channel_link(ch, L2_LINK_CHILD, chFilter, chPrefix, chBuffer, chFile, NULL) != L2_OK)
+        die("failed to link file-related channels together as a child sequence");
+    if (l2_channel_link(ch, L2_LINK_CHILD, chSyslog, NULL) != L2_OK)
+        die("failed to link syslog-related channels together as a child sequence");
 
     /* open channel tree */
     if (l2_channel_open(ch) != L2_OK)
 |