<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/eunit/doc/eunit_surefire.html</filename>
    </added>
    <added>
      <filename>lib/eunit/ebin/eunit_listener.beam</filename>
    </added>
    <added>
      <filename>lib/eunit/ebin/eunit_surefire.beam</filename>
    </added>
    <added>
      <filename>lib/eunit/src/eunit_listener.erl</filename>
    </added>
    <added>
      <filename>lib/eunit/src/eunit_surefire.erl</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -46,7 +46,7 @@ At Ericsson we have a &quot;Daily Build and Test&quot; that runs on:
     Linux/Suse x86	    9.4, 10.1
     Linux/Suse x86_64	    10.0, 10.1, 11.0
     FreeBSD x86             7.1
-    Mac OS X/Intel          10.4.11 (Tiger), 10.5.5 (Leopard)
+    Mac OS X/Intel          10.4.11 (Tiger), 10.5.6 (Leopard)
     Windows		    XP SP3, 2003, Vista
 
 </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,133 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the ERTS application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Erts 5.7.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Fixed a bug on Windows that could make
+	    &lt;c&gt;gen_tcp:send&lt;/c&gt; hang trying to send an iolist of more
+	    than 16 binaries.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7816&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    The runtime system could under rare circumstances crash
+	    during load balancing.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7908 Aux Id: otp-7500 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    &lt;c&gt;run_erl&lt;/c&gt; uses fallback if Unix98 pseudo-terminal is
+	    not present on host.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7916 Aux Id: seq11249 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    A message buffer memory leak in the runtime system
+	    without smp support has been fixed.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7941&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+	    &lt;p&gt;Attempting to append a binary of 16Mb or greater to
+	    another binary using the bit syntax would cause a
+	    &lt;c&gt;system_limit&lt;/c&gt; exception. There was also several
+	    cases when constructing binaries when a &lt;c&gt;badarg&lt;/c&gt;
+	    exception was generated when it should have been
+	    &lt;c&gt;system_limit&lt;/c&gt;.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7942&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    The runtime system with SMP support failed to terminate
+	    the caller of &lt;c&gt;link(RemotePid)&lt;/c&gt; properly, if
+	    &lt;c&gt;RemotePid&lt;/c&gt; was the pid of a process on an
+	    unreachable node. The calling process was in this case
+	    marked as exiting, but never terminated.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7946&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Rudimentary support for cross compiling is added to the
+	    source release. The support is still in its infancy and
+	    has only been used to cross compile on Linux for a
+	    different cpu architecture and a different Linux version,
+	    but should be extendable to support other platforms as
+	    well. The cross configuration files with examples are
+	    placed in $ERL_TOP/xcomp/. View README.xcomp and run
+	    $ERL_TOP/otp_build -help for further information.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7854&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+	    &lt;p&gt;The escape sequence &lt;c&gt;\{&lt;/c&gt; which was given a new
+	    interpretation in R13A has retained its old meaning (the
+	    ASCII code for &lt;c&gt;{&lt;/c&gt;), which means that codes greater
+	    than 255 have to be stated using hexadecimal characters
+	    (for example, &lt;c&gt;\x{AAA}&lt;/c&gt;). The escape sequence
+	    &lt;c&gt;\xH&lt;/c&gt; where H is a hexadecimal character followed by
+	    something else but a hexadecimal character is no longer
+	    valid (incompatibility with R13A). Character codes less
+	    than 256 can be stated using two hexadecimal characters
+	    (for example, &lt;c&gt;\x0D&lt;/c&gt;).&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7891 Aux Id: OTP-7855 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+	    &lt;p&gt;The &lt;c&gt;term_to_binary/1&lt;/c&gt; BIF used to be implemented
+	    with recursive C code, which could cause the Erlang
+	    emulator to terminate because of a stack overflow.&lt;/p&gt;
+	    &lt;p&gt;Also fixed some minor issues in
+	    &lt;c&gt;term_to_binary/1&lt;/c&gt; and &lt;c&gt;binary_to_term/1&lt;/c&gt;
+	    pointed out by Matthew Dempsky.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7894&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Several glitches and performance issues in the Unicode
+	    and I/O-system implementation of R13A have been
+	    corrected.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7896 Aux Id: OTP-7648 OTP-7887 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Minor documentation improvements of the
+	    &lt;c&gt;scheduler_bind_type&lt;/c&gt; argument of
+	    &lt;c&gt;erlang:system_flag/2&lt;/c&gt;, and the
+	    &lt;c&gt;scheduler_bind_type&lt;/c&gt;, and the
+	    &lt;c&gt;scheduler_bindings&lt;/c&gt; arguments of
+	    &lt;c&gt;erlang:system_info/1&lt;/c&gt;.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7901 Aux Id: OTP-7777 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    There is a new BIF &lt;c&gt;erlang:make_tuple/3&lt;/c&gt;.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7913&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
+
 &lt;section&gt;&lt;title&gt;Erts 5.7&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;</diff>
      <filename>erts/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_dg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_info.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_lb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_place.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_txt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/appmon_web.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/appmon/ebin/process_info.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_check.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_constructed_ber.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_constructed_ber_bin_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_constructed_per.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_gen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_gen_ber.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_gen_ber_bin_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_gen_per.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_gen_per_rt2ct.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_name.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_parser2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_pretty_format.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_tok.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1ct_value.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_ber_bin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_ber_bin_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_check.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_driver_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_per_bin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_per_bin_rt2ct.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/asn1/ebin/asn1rt_uper_bin.beam</filename>
    </modified>
    <modified>
      <diff>@@ -32,6 +32,21 @@
     &lt;file&gt;notes.xml&lt;/file&gt;
     &lt;/header&gt;
 
+&lt;section&gt;&lt;title&gt;Common_Test 1.4.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Minor updates and corrections.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7897&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Common_Test 1.4&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/common_test/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_cover.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_event.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_framework.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_ftp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_gen_conn.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_line.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_logs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_make.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_master.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_master_event.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_master_logs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_master_status.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_repeat.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_rpc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_run.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_snmp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_ssh.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_telnet.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_telnet_client.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_testspec.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/ct_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/unix_telnet.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/common_test/ebin/vts.beam</filename>
    </modified>
    <modified>
      <diff>@@ -30,6 +30,60 @@
   &lt;p&gt;This document describes the changes made to the Compiler
     application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Compiler 4.6.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Miscellaneous minor bugs fixed.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7937&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    There will be more efficient code if there is a clause
+	    that matches the empty binary and no other clauses that
+	    matches non-empty binaries.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7924&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+	    &lt;p&gt;There is new option to allow a module to have a module
+	    name other than the filename. Do not use it unless you
+	    know what you are doing.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7927&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
+&lt;section&gt;&lt;title&gt;Compiler 4.6.0.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+            &lt;p&gt;Using &lt;c&gt;andalso&lt;/c&gt;/&lt;c&gt;orelse&lt;/c&gt; or record access in
+            a &lt;c&gt;try&lt;/c&gt;...&lt;c&gt;catch&lt;/c&gt; could cause a compiler
+            crash.&lt;/p&gt;
+            &lt;p&gt;Som large and complex functions could require
+            extremely long compilation times (hours or days).&lt;/p&gt;
+          &lt;p&gt;
+            Own Id: OTP-7905&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Compiler 4.6&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;</diff>
      <filename>lib/compiler/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_asm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_block.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_bool.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_bsm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_clean.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_dead.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_dict.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_disasm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_flatten.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_jump.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_listing.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_opcodes.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_peep.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_trim.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_type.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/beam_validator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/cerl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/cerl_clauses.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/cerl_inline.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/cerl_trees.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/compile.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/core_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/core_lint.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/core_parse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/core_pp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/core_scan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/erl_bifs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/rec_env.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/sys_core_dsetel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/sys_core_fold.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/sys_core_inline.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/sys_expand_pmod.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/sys_pre_attributes.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/sys_pre_expand.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/v3_codegen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/v3_core.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/v3_kernel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/v3_kernel_pp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/compiler/ebin/v3_life.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 -module(beam_opcodes).
 %%  Warning: Do not edit this file.  It was automatically
-%%  generated by 'beam_makeops' on Wed Apr 15 20:51:06 2009.
+%%  generated by 'beam_makeops' on Mon Apr 20 20:41:01 2009.
 
 -export([format_number/0]).
 -export([opcode/2,opname/1]).</diff>
      <filename>lib/compiler/src/beam_opcodes.erl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%  Warning: Do not edit this file.  It was automatically
-%%  generated by 'beam_makeops' on Wed Apr 15 20:51:06 2009.
+%%  generated by 'beam_makeops' on Mon Apr 20 20:41:01 2009.
 
 -define(tag_u, 0).
 -define(tag_i, 1).</diff>
      <filename>lib/compiler/src/beam_opcodes.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 tok_val(T) -&gt; element(3, T).
 tok_line(T) -&gt; element(2, T).
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/compiler/src/core_parse.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_AlreadyConnected.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ConsumerAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_EventChannel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ProxyPullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ProxyPullConsumer_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ProxyPullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ProxyPushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ProxyPushConsumer_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_ProxyPushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_SupplierAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_SupplierAdmin_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventChannelAdmin_TypeError.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventComm_Disconnected.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventComm_PullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventComm_PullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventComm_PushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/CosEventComm_PushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/cosEventApp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventChannelAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_CAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_CAdmin_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_Channel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_Channel_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_Event.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_PullerS.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_PullerS_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_PusherS.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_CosEventComm_PusherS_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEvent/ebin/oe_cosEventApp.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_ConsumerAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_ConsumerAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_EventChannel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_EventChannel.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_ProxyPullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_ProxyPullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_ProxyPushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_ProxyPushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventChannelAdmin_SupplierAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventChannelAdmin_SupplierAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventComm.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventComm_PullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventComm_PullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventComm_PullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventComm_PullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventComm_PushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventComm_PushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventComm_PushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/CosEventComm_PushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventChannelAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/oe_CosEventChannelAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/include/oe_CosEventComm.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_AlreadyConnected
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_AlreadyConnected.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_ConsumerAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_ConsumerAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_EventChannel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_EventChannel.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_ProxyPullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_ProxyPullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_ProxyPushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_ProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_ProxyPushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_SupplierAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_SupplierAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventChannelAdmin_TypeError
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventChannelAdmin_TypeError.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventComm_Disconnected
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventComm_Disconnected.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventComm_PullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventComm_PullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventComm_PullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventComm_PullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventComm_PushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventComm_PushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventComm_PushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/CosEventComm_PushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventChannelAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -196,6 +196,6 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
      [&quot;CosEventComm.idl&quot;]}.
 </diff>
      <filename>lib/cosEvent/src/oe_CosEventChannelAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventComm_CAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_CAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventComm_CAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_CAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventComm_Channel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_Channel.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventComm_Channel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_Channel.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventComm_Event
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_Event.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventComm_Event
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_Event.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventComm_PullerS
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_PullerS.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventComm_PullerS
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_PullerS.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventComm_PusherS
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_PusherS.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventComm_PusherS
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_CosEventComm_PusherS.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_cosEventApp
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -142,6 +142,6 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl&quot;,
      [&quot;CosEventComm.idl&quot;,&quot;CosEventChannelAdmin.idl&quot;]}.
 </diff>
      <filename>lib/cosEvent/src/oe_cosEventApp.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_cosEventApp
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/cosEventApp.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEvent/src/oe_cosEventApp.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_AlreadyExists.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_Connection.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_ConnectionIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_ConnectionNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_CycleCreationForbidden.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_CycleSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_DiamondCreationForbidden.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_DiamondSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_DomainIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_DomainNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_EventDomain.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_EventDomainFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_EventDomainFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_EventDomain_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_MemberIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/CosEventDomainAdmin_RouteSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/cosEventDomainApp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosEventDomain/ebin/oe_CosEventDomainAdmin.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventDomainAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/include/CosEventDomainAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventDomainAdmin_EventDomain
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/include/CosEventDomainAdmin_EventDomain.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosEventDomainAdmin_EventDomainFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/include/CosEventDomainAdmin_EventDomainFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosEventDomainAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/include/oe_CosEventDomainAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_AlreadyExists
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_AlreadyExists.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_Connection
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_Connection.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_ConnectionIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_ConnectionIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_ConnectionNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_ConnectionNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_CycleCreationForbidden
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_CycleCreationForbidden.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_CycleSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_CycleSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_DiamondCreationForbidden
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_DiamondCreationForbidden.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_DiamondSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_DiamondSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_DomainIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_DomainIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_DomainNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_DomainNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_EventDomain
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_EventDomain.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_EventDomainFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_EventDomainFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_MemberIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_MemberIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosEventDomainAdmin_RouteSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosEventDomain/src/CosEventDomainAdmin_RouteSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosEventDomainAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -633,12 +633,12 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl&quot;]}.
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEventDomain/src/CosEventDomainAdmin.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl&quot;]}.
 </diff>
      <filename>lib/cosEventDomain/src/oe_CosEventDomainAdmin.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_AccessLevel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_CommandNotImplementedException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_Directory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_Directory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_File.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileIterator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileIterator_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileList.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileNameList.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileNotFoundException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileTransferSession.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileTransferSession_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_FileWrapper.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_File_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_IllegalOperationException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_ProtocolAddressList.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_ProtocolSupport.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_RequestFailureException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_SessionException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_SupportedProtocolAddresses.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_TransferException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_VirtualFileSystem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_VirtualFileSystem_ContentList.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/CosFileTransfer_VirtualFileSystem_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/cosFileTransferApp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/cosFileTransferNATIVE_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosFileTransfer/ebin/oe_CosFileTransfer.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosFileTransfer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/CosFileTransfer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosFileTransfer_Directory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/CosFileTransfer_Directory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosFileTransfer_File
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/CosFileTransfer_File.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosFileTransfer_FileIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/CosFileTransfer_FileIterator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosFileTransfer_FileTransferSession
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/CosFileTransfer_FileTransferSession.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosFileTransfer_VirtualFileSystem
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/CosFileTransfer_VirtualFileSystem.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosFileTransfer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/include/oe_CosFileTransfer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_AccessLevel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_AccessLevel.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_CommandNotImplementedException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_CommandNotImplementedException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_Directory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_Directory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_File
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_File.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_FileIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_FileIterator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_FileList
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_FileList.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_FileNameList
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_FileNameList.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_FileNotFoundException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_FileNotFoundException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_FileTransferSession
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_FileTransferSession.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_FileWrapper
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_FileWrapper.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_IllegalOperationException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_IllegalOperationException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_ProtocolAddressList
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_ProtocolAddressList.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_ProtocolSupport
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_ProtocolSupport.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_RequestFailureException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_RequestFailureException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_SessionException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_SessionException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_SupportedProtocolAddresses
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_SupportedProtocolAddresses.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_TransferException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_TransferException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_VirtualFileSystem
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_VirtualFileSystem.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosFileTransfer_VirtualFileSystem_ContentList
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosFileTransfer/src/CosFileTransfer_VirtualFileSystem_ContentList.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosFileTransfer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -488,6 +488,6 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl&quot;]}.
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosFileTransfer/src/CosFileTransfer.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl&quot;]}.
 </diff>
      <filename>lib/cosFileTransfer/src/oe_CosFileTransfer.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_AdminPropertiesAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_Common.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_EventBatch.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_EventHeader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_EventType.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_EventTypeSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_FixedEventHeader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_NamedPropertyRange.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_NamedPropertyRangeSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_Property.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_PropertyError.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_PropertyErrorSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_PropertyRange.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_PropertySeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_QoSAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_StructuredEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_UnsupportedAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotification_UnsupportedQoS.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_AdminIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_AdminLimit.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_AdminLimitExceeded.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_AdminNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ChannelIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ChannelNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ConnectionAlreadyActive.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ConnectionAlreadyInactive.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ConsumerAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ConsumerAdmin_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_EventChannel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_EventChannelFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_EventChannelFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_EventChannel_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_NotConnected.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyPullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyPullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyPushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxyPushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_ProxySupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_SequenceProxyPullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_SequenceProxyPullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_SequenceProxyPushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_SequenceProxyPushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_StructuredProxyPullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_StructuredProxyPullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_StructuredProxyPushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_StructuredProxyPushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_SupplierAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyChannelAdmin_SupplierAdmin_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_InvalidEventType.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_NotifyPublish.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_NotifySubscribe.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_PullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_PullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_PushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_PushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_SequencePullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_SequencePullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_SequencePushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_SequencePushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_StructuredPullConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_StructuredPullSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_StructuredPushConsumer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyComm_StructuredPushSupplier.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_CallbackIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_CallbackNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_ConstraintExp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_ConstraintExpSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_ConstraintIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_ConstraintInfo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_ConstraintInfoSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_ConstraintNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_DuplicateConstraintID.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_Filter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_FilterAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_FilterFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_FilterFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_FilterIDSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_FilterNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_Filter_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_InvalidConstraint.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_InvalidGrammar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_InvalidValue.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_MappingConstraintInfo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_MappingConstraintInfoSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_MappingConstraintPair.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_MappingConstraintPairSeq.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_MappingFilter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_MappingFilter_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/CosNotifyFilter_UnsupportedFilterableData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/PullerConsumer_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/PullerSupplier_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/PusherConsumer_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/PusherSupplier_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/cosNotificationApp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/cosNotification_Filter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/cosNotification_Grammar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/cosNotification_Scanner.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/cosNotification_eventDB.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/oe_CosNotification.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/oe_CosNotificationComm_Event.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/oe_CosNotifyChannelAdmin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/oe_CosNotifyComm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/oe_CosNotifyFilter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosNotification/ebin/oe_cosNotificationAppComm.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotification
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotification.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotification_AdminPropertiesAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotification_AdminPropertiesAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotification_QoSAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotification_QoSAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ConsumerAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ConsumerAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_EventChannel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_EventChannel.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_EventChannelFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_EventChannelFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ProxyConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ProxyPullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ProxyPullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ProxyPushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ProxyPushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxySupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_ProxySupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_SequenceProxyPullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_SequenceProxyPullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_SequenceProxyPushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_SequenceProxyPushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_StructuredProxyPullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_StructuredProxyPullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_StructuredProxyPushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_StructuredProxyPushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyChannelAdmin_SupplierAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyChannelAdmin_SupplierAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_NotifyPublish
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_NotifyPublish.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_NotifySubscribe
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_NotifySubscribe.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_PullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_PullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_PullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_PullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_PushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_PushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_PushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_PushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_SequencePullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_SequencePullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_SequencePullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_SequencePullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_SequencePushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_SequencePushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_SequencePushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_SequencePushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_StructuredPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_StructuredPullConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_StructuredPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_StructuredPullSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_StructuredPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_StructuredPushConsumer.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyComm_StructuredPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyComm_StructuredPushSupplier.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyFilter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyFilter.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyFilter_Filter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyFilter_Filter.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyFilter_FilterAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyFilter_FilterAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyFilter_FilterFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyFilter_FilterFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNotifyFilter_MappingFilter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/CosNotifyFilter_MappingFilter.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosNotification
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/oe_CosNotification.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosNotifyChannelAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/oe_CosNotifyChannelAdmin.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosNotifyComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/oe_CosNotifyComm.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosNotifyFilter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/include/oe_CosNotifyFilter.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_AdminPropertiesAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_AdminPropertiesAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_EventBatch
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_EventBatch.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_EventHeader
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_EventHeader.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_EventType
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_EventType.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_EventTypeSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_EventTypeSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_FixedEventHeader
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_FixedEventHeader.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_NamedPropertyRange
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_NamedPropertyRange.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_NamedPropertyRangeSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_NamedPropertyRangeSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_Property
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_Property.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_PropertyError
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_PropertyError.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_PropertyErrorSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_PropertyErrorSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_PropertyRange
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_PropertyRange.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_PropertySeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_PropertySeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_QoSAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_QoSAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_StructuredEvent
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_StructuredEvent.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_UnsupportedAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_UnsupportedAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotification_UnsupportedQoS
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotification_UnsupportedQoS.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_AdminIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_AdminIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_AdminLimit
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_AdminLimit.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_AdminLimitExceeded
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_AdminLimitExceeded.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_AdminNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_AdminNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ChannelIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ChannelIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ChannelNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ChannelNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ConnectionAlreadyActive
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ConnectionAlreadyActive.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ConnectionAlreadyInactive
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ConnectionAlreadyInactive.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ConsumerAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ConsumerAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_EventChannel
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_EventChannel.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_EventChannelFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_EventChannelFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_NotConnected
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_NotConnected.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyPullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyPullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyPushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxyPushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_ProxySupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_ProxySupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_SequenceProxyPullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_SequenceProxyPullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_SequenceProxyPushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_SequenceProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_SequenceProxyPushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_StructuredProxyPullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_StructuredProxyPullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_StructuredProxyPushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_StructuredProxyPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_StructuredProxyPushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyChannelAdmin_SupplierAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyChannelAdmin_SupplierAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_InvalidEventType
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_InvalidEventType.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_NotifyPublish
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_NotifyPublish.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_NotifySubscribe
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_NotifySubscribe.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_PullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_PullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_PullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_PullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_PushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_PushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_PushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_PushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_SequencePullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_SequencePullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_SequencePullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_SequencePullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_SequencePushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_SequencePushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_SequencePushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_SequencePushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_StructuredPullConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_StructuredPullConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_StructuredPullSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_StructuredPullSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_StructuredPushConsumer
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_StructuredPushConsumer.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyComm_StructuredPushSupplier
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyComm_StructuredPushSupplier.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_CallbackIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_CallbackIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_CallbackNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_CallbackNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_ConstraintExp
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_ConstraintExp.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_ConstraintExpSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_ConstraintExpSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_ConstraintIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_ConstraintIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_ConstraintInfo
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_ConstraintInfo.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_ConstraintInfoSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_ConstraintInfoSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_ConstraintNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_ConstraintNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_DuplicateConstraintID
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_DuplicateConstraintID.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_Filter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_Filter.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_FilterAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_FilterAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_FilterFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_FilterFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_FilterIDSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_FilterIDSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_FilterNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_FilterNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_InvalidConstraint
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_InvalidConstraint.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_InvalidGrammar
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_InvalidGrammar.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_InvalidValue
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_InvalidValue.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_MappingConstraintInfo
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_MappingConstraintInfo.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_MappingConstraintInfoSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_MappingConstraintInfoSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_MappingConstraintPair
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_MappingConstraintPair.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_MappingConstraintPairSeq
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_MappingConstraintPairSeq.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_MappingFilter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_MappingFilter.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNotifyFilter_UnsupportedFilterableData
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/CosNotifyFilter_UnsupportedFilterableData.erl</filename>
    </modified>
    <modified>
      <diff>@@ -39,7 +39,7 @@ examin_comp(V) -&gt;
 	V.
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/cosNotification/src/cosNotification_Grammar.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosNotification
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -695,7 +695,7 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;]}.
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotification.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;]}.
 </diff>
      <filename>lib/cosNotification/src/oe_CosNotification.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosNotificationComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/oe_CosNotificationComm.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosNotificationComm_Event
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/oe_CosNotificationComm_Event.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosNotificationComm_Event
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/oe_CosNotificationComm_Event.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosNotifyChannelAdmin
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -729,9 +729,9 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyChannelAdmin.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
       &quot;CosNotification.idl&quot;,&quot;cosNotificationAppComm.idl&quot;,&quot;CosNotifyComm.idl&quot;,
       &quot;CosNotifyFilter.idl&quot;]}.
 </diff>
      <filename>lib/cosNotification/src/oe_CosNotifyChannelAdmin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosNotifyComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -582,8 +582,8 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyComm.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
       &quot;CosNotification.idl&quot;]}.
 </diff>
      <filename>lib/cosNotification/src/oe_CosNotifyComm.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosNotifyFilter
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -1009,8 +1009,8 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/CosNotifyFilter.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
       &quot;CosNotification.idl&quot;,&quot;CosNotifyComm.idl&quot;]}.
 </diff>
      <filename>lib/cosNotification/src/oe_CosNotifyFilter.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_cosNotificationAppComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -231,8 +231,8 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
-      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+      &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventChannelAdmin.idl&quot;,
       &quot;CosNotification.idl&quot;]}.
 </diff>
      <filename>lib/cosNotification/src/oe_cosNotificationAppComm.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_cosNotificationAppComm
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosNotification/src/cosNotificationAppComm.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosNotification/src/oe_cosNotificationAppComm.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_ConflictingProperty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_ConstraintNotSupported.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_FixedProperty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_InvalidPropertyName.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_MultipleExceptions.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_Properties.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertiesIterator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertiesIterator_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_Property.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyDef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyDefs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyException.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyExceptions.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyMode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyModes.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyNames.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyNamesIterator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyNamesIterator_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyNotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySet.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySetDef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySetDefFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySetDefFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySetDef_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySetFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertySetFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_PropertyTypes.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_ReadOnlyProperty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_UnsupportedMode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_UnsupportedProperty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/CosPropertyService_UnsupportedTypeCode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/cosProperty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosProperty/ebin/oe_CosProperty.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService_PropertiesIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService_PropertiesIterator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService_PropertyNamesIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService_PropertyNamesIterator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService_PropertySet
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService_PropertySet.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService_PropertySetDef
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService_PropertySetDef.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService_PropertySetDefFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService_PropertySetDefFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosPropertyService_PropertySetFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/CosPropertyService_PropertySetFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosProperty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/include/oe_CosProperty.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_ConflictingProperty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_ConflictingProperty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_ConstraintNotSupported
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_ConstraintNotSupported.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_FixedProperty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_FixedProperty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_InvalidPropertyName
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_InvalidPropertyName.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_MultipleExceptions
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_MultipleExceptions.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_Properties
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_Properties.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertiesIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertiesIterator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_Property
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_Property.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyDef
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyDef.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyDefs
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyDefs.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyException
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyException.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyExceptions
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyExceptions.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyMode
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyMode.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyModes
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyModes.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyNames
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyNames.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyNamesIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyNamesIterator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyNotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyNotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertySet
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertySet.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertySetDef
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertySetDef.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertySetDefFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertySetDefFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertySetFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertySetFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_PropertyTypes
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_PropertyTypes.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_ReadOnlyProperty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_ReadOnlyProperty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_UnsupportedMode
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_UnsupportedMode.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_UnsupportedProperty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_UnsupportedProperty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosPropertyService_UnsupportedTypeCode
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/CosPropertyService_UnsupportedTypeCode.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosProperty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosProperty/src/CosProperty.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosProperty/src/oe_CosProperty.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_TIO.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_TIO_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_TimeService.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_TimeService_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_TimeUnavailable.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_UTO.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTime_UTO_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTimerEvent_TimerEventHandler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTimerEvent_TimerEventHandler_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTimerEvent_TimerEventService.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTimerEvent_TimerEventService_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/CosTimerEvent_TimerEventT.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/TimeBase_IntervalT.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/TimeBase_UtcT.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/cosTime.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/oe_CosTime.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/oe_CosTimerEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTime/ebin/oe_TimeBase.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTime
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTime.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTime_TIO
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTime_TIO.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTime_TimeService
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTime_TimeService.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTime_UTO
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTime_UTO.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTimerEvent
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTimerEvent.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTimerEvent_TimerEventHandler
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTimerEvent_TimerEventHandler.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTimerEvent_TimerEventService
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/CosTimerEvent_TimerEventService.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: TimeBase
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/TimeBase.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosTime
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/oe_CosTime.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosTimerEvent
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/oe_CosTimerEvent.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_TimeBase
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/include/oe_TimeBase.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTime_TIO
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTime_TIO.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTime_TimeService
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTime_TimeService.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTime_TimeUnavailable
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTime_TimeUnavailable.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTime_UTO
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTime_UTO.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTimerEvent_TimerEventHandler
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTimerEvent_TimerEventHandler.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTimerEvent_TimerEventService
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTimerEvent_TimerEventService.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTimerEvent_TimerEventT
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/CosTimerEvent_TimerEventT.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: TimeBase_IntervalT
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/TimeBase_IntervalT.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: TimeBase_UtcT
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/TimeBase_UtcT.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosTime
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -263,6 +263,6 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTime.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTime.idl&quot;,
      [&quot;TimeBase.idl&quot;]}.
 </diff>
      <filename>lib/cosTime/src/oe_CosTime.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosTimerEvent
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -231,7 +231,7 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl&quot;,
-     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/CosTimerEvent.idl&quot;,
+     [&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosEvent/src/CosEventComm.idl&quot;,
       &quot;TimeBase.idl&quot;,&quot;CosTime.idl&quot;]}.
 </diff>
      <filename>lib/cosTime/src/oe_CosTimerEvent.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_TimeBase
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTime/src/TimeBase.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTime/src/oe_TimeBase.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Control.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Coordinator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_HeuristicCommit.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_HeuristicHazard.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_HeuristicMixed.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_HeuristicRollback.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Inactive.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_InvalidControl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_NoTransaction.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_NotPrepared.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_NotSubtransaction.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_PropagationContext.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_RecoveryCoordinator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Resource.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_SubtransactionAwareResource.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_SubtransactionsUnavailable.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_SynchronizationUnavailable.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Terminator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Terminator_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_TransIdentity.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_TransactionFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_TransactionFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_Unavailable.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_WrongTransaction.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/CosTransactions_otid_t.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/ETraP_Common.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/ETraP_Server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/ETraP_Server_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/cosTransactions.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/etrap_logmgr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/cosTransactions/ebin/oe_CosTransactions.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_Control
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_Control.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_Coordinator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_Coordinator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_RecoveryCoordinator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_RecoveryCoordinator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_Resource
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_Resource.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_SubtransactionAwareResource
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_SubtransactionAwareResource.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_Terminator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_Terminator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosTransactions_TransactionFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/CosTransactions_TransactionFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: ETraP
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/ETraP.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: ETraP_Server
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/ETraP_Server.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CosTransactions
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/include/oe_CosTransactions.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_Control
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_Control.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_Coordinator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_Coordinator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_HeuristicCommit
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_HeuristicCommit.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_HeuristicHazard
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_HeuristicHazard.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_HeuristicMixed
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_HeuristicMixed.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_HeuristicRollback
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_HeuristicRollback.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_Inactive
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_Inactive.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_InvalidControl
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_InvalidControl.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_NoTransaction
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_NoTransaction.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_NotPrepared
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_NotPrepared.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_NotSubtransaction
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_NotSubtransaction.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_PropagationContext
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_PropagationContext.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_RecoveryCoordinator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_RecoveryCoordinator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_Resource
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_Resource.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_SubtransactionAwareResource
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_SubtransactionAwareResource.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_SubtransactionsUnavailable
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_SubtransactionsUnavailable.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_SynchronizationUnavailable
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_SynchronizationUnavailable.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_Terminator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_Terminator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_TransIdentity
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_TransIdentity.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_TransactionFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_TransactionFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_Unavailable
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_Unavailable.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_WrongTransaction
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_WrongTransaction.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosTransactions_otid_t
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/CosTransactions_otid_t.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: ETraP_Server
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/ETraP_Server.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CosTransactions
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/cosTransactions/src/CosTransactions.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/cosTransactions/src/oe_CosTransactions.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/crypto/ebin/crypto.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/crypto/ebin/crypto_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/crypto/ebin/crypto_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/crypto/ebin/crypto_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_debugged.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_icmd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_idb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ieval.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_iload.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_iserver.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_break.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_break_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_edit.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_edit_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_filedialog_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_interpret.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_mon.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_mon_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_settings.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_trace.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_trace_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_view.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_ui_winman.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_break.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_break_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_code.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_filedialog_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_interpret.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_mon.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_mon_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_settings.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_src_view.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_trace.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_trace_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_view.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/dbg_wx_winman.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/debugger.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/i.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/debugger/ebin/int.beam</filename>
    </modified>
    <modified>
      <diff>@@ -4,6 +4,13 @@
 ==============================================================================
 
 
+Version 1.9.1 (in Erlang/OTP R13A)
+----------------------------------
+ - Contains the changes described below (R13A) but also:
+    - Has better handling of opaque types
+    - The handling of UFT segments of bitstreams has been significantly
+      strengthened and revised.  In all probability, now it is correct.
+
 Version 1.9.0 (in Erlang/OTP R13A)
 ----------------------------------
  - The analysis accepts opaque type declarations and detects violations of
@@ -14,9 +21,8 @@ Version 1.9.0 (in Erlang/OTP R13A)
    structure of these terms.
  - Added support for handling UTF segments in bitstreams and for detecting
    obvious type errors in these segments.
-   Warning: This code is not terribly tested though since there are very
-   few Erlang programs which use Unicode-based binaries - not surprising
-   since this is a new language feature of R13.
+   Warning: This code is not terribly tested -- not surprising since this is
+   a new language feature of R13.
  - Strengthened the discrepancy identification when testing for equality and
    matching between terms of different types.  This detects more bugs in code.
  - Added warning for M:F(...) calls where M is not a module term and F is not</diff>
      <filename>lib/dialyzer/RELEASE_NOTES</filename>
    </modified>
    <modified>
      <diff>@@ -21,7 +21,7 @@
     
     &lt;/legalnotice&gt;
 
-    &lt;title&gt;Dilayzer Release Notes&lt;/title&gt;
+    &lt;title&gt;Dialyzer Release Notes&lt;/title&gt;
     &lt;prepared&gt;otp_appnotes&lt;/prepared&gt;
     &lt;docno&gt;nil&lt;/docno&gt;
     &lt;date&gt;nil&lt;/date&gt;
@@ -30,6 +30,22 @@
   &lt;p&gt;This document describes the changes made to the Dialyzer
     application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Dialyzer 1.9.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;Has better handling of opaque types.&lt;/p&gt;
+	    &lt;p&gt;The handling of UTF segments of bitstreams has been
+	    significantly strengthened and revised. In all
+	    probability, now it is correct.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7958&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
 &lt;section&gt;&lt;title&gt;Dialyzer 1.9.0&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/dialyzer/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_analysis_callgraph.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_callgraph.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_cl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_cl_parse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_codeserver.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_contracts.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_dataflow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_dep.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_gui.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_options.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_plt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_races.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_succ_typings.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_typesig.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/dialyzer/ebin/dialyzer_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_edoc_xml_cb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_gen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_html_layout.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_html_ref.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_html_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_html_util_iso.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_main.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_pretty_format.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_application2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_appref2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_chapter2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_cite2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_comref2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_cref2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_erlref2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_fileref2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_first2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_index2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_part2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_refs2kwic.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_report2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_tr_term2html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_transform.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_xmerl_tree_cb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_xmerl_xml_cb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/docbuilder/ebin/docb_xml_check.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_data.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_doclet.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_extract.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_layout.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_macros.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_parser.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_refs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_report.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_run.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_scanner.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_tags.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_types.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/edoc_wiki.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/edoc/ebin/otpsgml_layout.beam</filename>
    </modified>
    <modified>
      <diff>@@ -197,7 +197,7 @@ throw_error(E, L) -&gt;
     %% Just in case.
     throw({error,L,{&quot;unknown parse error: ~P.&quot;,[E,15]}}).
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/edoc/src/edoc_parser.erl</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,47 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the Erl_interface application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Erl_Interface 3.6.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;A faulty validation in &lt;c&gt;ei_reg_getpval&lt;/c&gt; caused it
+	    to never return the key-value. This has now been fixed.
+	    (Thanks to Matt Stancliff)&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7960&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;Minor update to the &lt;c&gt;configure&lt;/c&gt; script.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7959&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
+&lt;section&gt;&lt;title&gt;Erl_Interface 3.6.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;Minor update to the &lt;c&gt;configure&lt;/c&gt; script.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7959&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Erl_Interface 3.6&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/erl_interface/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff>@@ -31,7 +31,7 @@ const void *ei_reg_getpval(ei_reg *reg, const char *key, int *size)
   
   if ((!(obj=ei_hash_lookup(tab,key))) || /* return (const void *)EI_NOTFOUND; */
       (obj-&gt;attr &amp; EI_DELET)  || /* return (const void *)EI_NOTFOUND; */
-      (ei_reg_typeof(obj) != EI_STR)) /* return (const void *)EI_TYPE; */
+      (ei_reg_typeof(obj) != EI_BIN)) /* return (const void *)EI_TYPE; */
     return NULL;
 
   if (size) *size=obj-&gt;size;</diff>
      <filename>lib/erl_interface/src/registry/reg_getp.c</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-EI_VSN = 3.6
+EI_VSN = 3.6.1</diff>
      <filename>lib/erl_interface/vsn.mk</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/et/ebin/et.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/et/ebin/et_collector.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/et/ebin/et_contents_viewer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/et/ebin/et_selector.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/et/ebin/et_viewer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/et/examples/et_demo.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
 {application,eunit}.
 {packages,[]}.
-{modules,[eunit]}.
+{modules,[eunit,eunit_surefire]}.</diff>
      <filename>lib/eunit/doc/edoc-info</filename>
    </modified>
    <modified>
      <diff>@@ -10,9 +10,9 @@
 
 &lt;h1&gt;Module eunit&lt;/h1&gt;
 &lt;ul class=&quot;index&quot;&gt;&lt;li&gt;&lt;a href=&quot;#description&quot;&gt;Description&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#index&quot;&gt;Function Index&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;#functions&quot;&gt;Function Details&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;This module is the main EUnit user interface.
-&lt;p&gt;Copyright &#169; 2004-2007 Micka&#235;l R&#233;mond, Richard Carlsson&lt;/p&gt;
+&lt;p&gt;Copyright &#169; 2004-2009 Micka&#235;l R&#233;mond, Richard Carlsson&lt;/p&gt;
 
-&lt;p&gt;&lt;b&gt;Version:&lt;/b&gt; 2.0-beta, Oct 19 2008 18:26:30&lt;/p&gt;
+&lt;p&gt;&lt;b&gt;Version:&lt;/b&gt; 2.1, Apr 19 2009 22:38:34&lt;/p&gt;
 &lt;p&gt;&lt;b&gt;Authors:&lt;/b&gt; Micka&#235;l R&#233;mond (&lt;a href=&quot;mailto:mickael.remond@process-one.net&quot;&gt;&lt;tt&gt;mickael.remond@process-one.net&lt;/tt&gt;&lt;/a&gt;) [&lt;em&gt;web site:&lt;/em&gt; &lt;tt&gt;&lt;a href=&quot;http://www.process-one.net/&quot; target=&quot;_top&quot;&gt;http://www.process-one.net/&lt;/a&gt;&lt;/tt&gt;], Richard Carlsson (&lt;a href=&quot;mailto:richardc@it.uu.se&quot;&gt;&lt;tt&gt;richardc@it.uu.se&lt;/tt&gt;&lt;/a&gt;) [&lt;em&gt;web site:&lt;/em&gt; &lt;tt&gt;&lt;a href=&quot;http://user.it.uu.se/~richardc/&quot; target=&quot;_top&quot;&gt;http://user.it.uu.se/~richardc/&lt;/a&gt;&lt;/tt&gt;].&lt;/p&gt;
 
 &lt;h2&gt;&lt;a name=&quot;description&quot;&gt;Description&lt;/a&gt;&lt;/h2&gt;This module is the main EUnit user interface.
@@ -58,11 +58,14 @@
   &lt;dl&gt;
   &lt;dt&gt;&lt;code&gt;verbose&lt;/code&gt;&lt;/dt&gt;
   &lt;dd&gt;Displays more details about the running tests.&lt;/dd&gt;
-  &lt;/dl&gt;&lt;/p&gt;
+  &lt;/dl&gt;
+ 
+  Options in the environment variable EUNIT are also included last in
+  the option list, i.e., have lower precedence than those in &lt;code&gt;Options&lt;/code&gt;.&lt;/p&gt;
 &lt;p&gt;&lt;b&gt;See also:&lt;/b&gt; &lt;a href=&quot;#test-1&quot;&gt;test/1&lt;/a&gt;.&lt;/p&gt;
 &lt;hr&gt;
 
 &lt;div class=&quot;navbar&quot;&gt;&lt;a name=&quot;#navbar_bottom&quot;&gt;&lt;/a&gt;&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; summary=&quot;navigation bar&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;overview-summary.html&quot; target=&quot;overviewFrame&quot;&gt;Overview&lt;/a&gt;&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://www.erlang.org/&quot;&gt;&lt;img src=&quot;erlang.png&quot; align=&quot;right&quot; border=&quot;0&quot; alt=&quot;erlang logo&quot;&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
-&lt;p&gt;&lt;i&gt;Generated by EDoc, Oct 19 2008, 18:26:30.&lt;/i&gt;&lt;/p&gt;
+&lt;p&gt;&lt;i&gt;Generated by EDoc, Apr 19 2009, 22:38:34.&lt;/i&gt;&lt;/p&gt;
 &lt;/body&gt;
 &lt;/html&gt;</diff>
      <filename>lib/eunit/doc/eunit.html</filename>
    </modified>
    <modified>
      <diff>@@ -7,6 +7,7 @@
 &lt;body bgcolor=&quot;white&quot;&gt;
 &lt;h2 class=&quot;indextitle&quot;&gt;Modules&lt;/h2&gt;
 &lt;table width=&quot;100%&quot; border=&quot;0&quot; summary=&quot;list of modules&quot;&gt;
-&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;eunit.html&quot; target=&quot;overviewFrame&quot; class=&quot;module&quot;&gt;eunit&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
+&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;eunit.html&quot; target=&quot;overviewFrame&quot; class=&quot;module&quot;&gt;eunit&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;eunit_surefire.html&quot; target=&quot;overviewFrame&quot; class=&quot;module&quot;&gt;eunit_surefire&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
 &lt;/body&gt;
 &lt;/html&gt;
\ No newline at end of file</diff>
      <filename>lib/eunit/doc/modules-frame.html</filename>
    </modified>
    <modified>
      <diff>@@ -10,14 +10,14 @@
 &lt;h1&gt;EUnit - a Lightweight Unit Testing Framework for Erlang
 &lt;/h1&gt;
 &lt;p&gt;Copyright &#169; 2004-2007 Micka&#235;l R&#233;mond, Richard Carlsson&lt;/p&gt;
-&lt;p&gt;&lt;b&gt;Version:&lt;/b&gt; 2.0-beta, Oct 19 2008 18:26:30
+&lt;p&gt;&lt;b&gt;Version:&lt;/b&gt; 2.1, Apr 19 2009 22:38:34
 &lt;/p&gt;
 &lt;p&gt;&lt;b&gt;Authors:&lt;/b&gt; Richard Carlsson (&lt;a href=&quot;mailto:richardc@it.uu.se&quot;&gt;&lt;tt&gt;richardc@it.uu.se&lt;/tt&gt;&lt;/a&gt;) [&lt;em&gt;web site:&lt;/em&gt; &lt;tt&gt;&lt;a href=&quot;http://user.it.uu.se/~richardc/&quot; target=&quot;_top&quot;&gt;http://user.it.uu.se/~richardc/&lt;/a&gt;&lt;/tt&gt;], Micka&#235;l R&#233;mond (&lt;a href=&quot;mailto:mickael.remond@process-one.net&quot;&gt;&lt;tt&gt;mickael.remond@process-one.net&lt;/tt&gt;&lt;/a&gt;) [&lt;em&gt;web site:&lt;/em&gt; &lt;tt&gt;&lt;a href=&quot;http://www.process-one.net/&quot; target=&quot;_top&quot;&gt;http://www.process-one.net/&lt;/a&gt;&lt;/tt&gt;].&lt;/p&gt;
 &lt;p&gt;EUnit is a unit testing framework for Erlang. It is very powerful
 and flexible, is easy to use, and has small syntactical overhead.&lt;/p&gt;
 
 &lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;#Unit_Testing&quot;&gt;Unit Testing&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;#Unit_testing&quot;&gt;Unit testing&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#Terminology&quot;&gt;Terminology&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#Getting_started&quot;&gt;Getting started&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#EUnit_macros&quot;&gt;EUnit macros&lt;/a&gt;&lt;/li&gt;
@@ -37,7 +37,7 @@ require changing existing code. Furthermore, tests that only exercise
 the exported functions of a module can always be placed in a completely
 separate module, avoiding any conflicts entirely.&lt;/p&gt;
 
-&lt;h3&gt;&lt;a name=&quot;Unit_Testing&quot;&gt;Unit Testing&lt;/a&gt;&lt;/h3&gt;
+&lt;h3&gt;&lt;a name=&quot;Unit_testing&quot;&gt;Unit testing&lt;/a&gt;&lt;/h3&gt;
 
 &lt;p&gt;Unit Testing is testing of individual program &quot;units&quot; in relative
 isolation. There is no particular size requirement: a unit can be a
@@ -232,7 +232,7 @@ causes a crash if the result is not what it should be.)&lt;/p&gt;
 
 If you want to use Boolean operators for your tests, the &lt;code&gt;assert&lt;/code&gt;
 macro comes in handy (see &lt;a href=&quot;#EUnit_macros&quot;&gt;EUnit macros&lt;/a&gt; for details):
-&lt;pre&gt;   length_test() -&amp;gt; ?assert(length([1,2,3]) == 3).&lt;/pre&gt;&lt;p&gt;
+&lt;pre&gt;   length_test() -&amp;gt; ?assert(length([1,2,3]) =:= 3).&lt;/pre&gt;&lt;p&gt;
 The &lt;code&gt;?assert(Expression)&lt;/code&gt; macro will evaluate &lt;code&gt;Expression&lt;/code&gt;, and if that
 does not evaluate to &lt;code&gt;true&lt;/code&gt;, it will throw an exception; otherwise it
 just returns &lt;code&gt;ok&lt;/code&gt;. In the above example, the test will thus fail if the
@@ -274,7 +274,7 @@ generator functions), so that it can be included in the test report if
 errors occur. To bypass EUnit and print text directly to the console
 while testing, you can write to the &lt;code&gt;user&lt;/code&gt; output stream, as in
 &lt;code&gt;io:format(user, &quot;~w&quot;, [Term])&lt;/code&gt;. The recommended way of doing this is to
-use the EUnit &lt;a href=&quot;#Debugging_Macros&quot;&gt;Debugging Macros&lt;/a&gt;, which make it much simpler.&lt;/p&gt;
+use the EUnit &lt;a href=&quot;#Debugging_macros&quot;&gt;Debugging macros&lt;/a&gt;, which make it much simpler.&lt;/p&gt;
 
 &lt;h4&gt;&lt;a name=&quot;Writing_test_generating_functions&quot;&gt;Writing test generating functions&lt;/a&gt;&lt;/h4&gt;
 
@@ -293,10 +293,10 @@ of tests&lt;/em&gt; to be executed by EUnit.&lt;/p&gt;
 The most basic representation of a test is a single fun-expression that
 takes no arguments. For example, the following test generator:
 &lt;pre&gt;   basic_test_() -&amp;gt;
-       fun () -&amp;gt; ?assert(1 + 1 == 2) end.&lt;/pre&gt;
+       fun () -&amp;gt; ?assert(1 + 1 =:= 2) end.&lt;/pre&gt;
 will have the same effect as the following simple test:
 &lt;pre&gt;   simple_test() -&amp;gt;
-       ?assert(1 + 1 == 2).&lt;/pre&gt;&lt;p&gt;
+       ?assert(1 + 1 =:= 2).&lt;/pre&gt;&lt;p&gt;
 (in fact, EUnit will handle all simple tests just like it handles
 fun-expressions: it will put them in a list, and run them one by one).&lt;/p&gt;
 
@@ -308,7 +308,7 @@ occurred (and reduce the number of characters you have to type), you can
 use the &lt;code&gt;_test&lt;/code&gt; macro (note the initial underscore character), like
 this:
 &lt;pre&gt;   basic_test_() -&amp;gt;
-       ?_test(?assert(1 + 1 == 2)).&lt;/pre&gt;&lt;p&gt;
+       ?_test(?assert(1 + 1 =:= 2)).&lt;/pre&gt;&lt;p&gt;
 The &lt;code&gt;_test&lt;/code&gt; macro takes any expression (the &quot;body&quot;) as argument, and
 places it within a fun-expression (along with some extra information).
 The body can be any kind of test expression, just like the body of a
@@ -321,7 +321,7 @@ family of &lt;code&gt;assert&lt;/code&gt; macros, have a corresponding form with an initial
 underscore character, which automatically adds a &lt;code&gt;?_test(...)&lt;/code&gt; wrapper.
 The above example can then simply be written:
 &lt;pre&gt;   basic_test_() -&amp;gt;
-       ?_assert(1 + 1 == 2).&lt;/pre&gt;&lt;p&gt;
+       ?_assert(1 + 1 =:= 2).&lt;/pre&gt;&lt;p&gt;
 which has exactly the same meaning (note the &lt;code&gt;_assert&lt;/code&gt; instead of
 &lt;code&gt;assert&lt;/code&gt;). You can think of the initial underscore as signalling
 &lt;em&gt;test object&lt;/em&gt;.&lt;/p&gt;
@@ -339,14 +339,14 @@ small Erlang module shows how EUnit can be used in practice.
    fib(N) when N &amp;gt; 1 -&amp;gt; fib(N-1) + fib(N-2).
 
    fib_test_() -&amp;gt;
-       [?_assert(fib(0) == 1),
-	?_assert(fib(1) == 1),
-	?_assert(fib(2) == 2),
-	?_assert(fib(3) == 3),
-	?_assert(fib(4) == 5),
-	?_assert(fib(5) == 8),
+       [?_assert(fib(0) =:= 1),
+	?_assert(fib(1) =:= 1),
+	?_assert(fib(2) =:= 2),
+	?_assert(fib(3) =:= 3),
+	?_assert(fib(4) =:= 5),
+	?_assert(fib(5) =:= 8),
 	?_assertException(error, function_clause, fib(-1)),
-	?_assert(fib(31) == 2178309)
+	?_assert(fib(31) =:= 2178309)
        ].&lt;/pre&gt;
 
 &lt;p&gt;(Author's note: When I first wrote this example, I happened to write a
@@ -415,7 +415,7 @@ your code is compiled with testing enabled or disabled.&lt;/p&gt;
 &lt;li&gt;&lt;a href=&quot;#Utility_macros&quot;&gt;Utility macros&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#Assert_macros&quot;&gt;Assert macros&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#Macros_for_running_external_commands&quot;&gt;Macros for running external commands&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;#Debugging_Macros&quot;&gt;Debugging Macros&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a href=&quot;#Debugging_macros&quot;&gt;Debugging macros&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;h4&gt;&lt;a name=&quot;Basic_macros&quot;&gt;Basic macros&lt;/a&gt;&lt;/h4&gt;
@@ -443,6 +443,12 @@ e.g., to ensure that the code can be compiled without including the
 EUnit header file, when testing is disabled. See also the macros &lt;code&gt;TEST&lt;/code&gt;
 and &lt;code&gt;NOTEST&lt;/code&gt;.
 &lt;/dd&gt;
+
+&lt;dt&gt;&lt;code&gt;EUNIT_NOAUTO&lt;/code&gt;&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, the automatic exporting or stripping of
+test functions will be disabled.
+&lt;/dd&gt;
+
 &lt;dt&gt;&lt;code&gt;TEST&lt;/code&gt;&lt;/dt&gt;
 &lt;dd&gt;&lt;p&gt;This macro is always defined (to &lt;code&gt;true&lt;/code&gt;, unless previously defined
 by the user to have another value) whenever EUnit is enabled at compile
@@ -459,6 +465,7 @@ The &lt;code&gt;TEST&lt;/code&gt; macro can also be used to override the &lt;code&gt;NOTEST&lt;/code&gt;
 included (even if &lt;code&gt;NOTEST&lt;/code&gt; is also defined), then the code will be
 compiled with EUnit enabled.
 &lt;/dd&gt;
+
 &lt;dt&gt;&lt;code&gt;NOTEST&lt;/code&gt;&lt;/dt&gt;
 &lt;dd&gt;&lt;p&gt;This macro is always defined (to &lt;code&gt;true&lt;/code&gt;, unless previously defined
 by the user to have another value) whenever EUnit is &lt;em&gt;disabled&lt;/em&gt;
@@ -471,9 +478,27 @@ is &lt;em&gt;not&lt;/em&gt; defined, then the code will be compiled with EUnit
 disabled. See also &lt;a href=&quot;#Disabling_testing&quot;&gt;Disabling testing&lt;/a&gt;.
 &lt;/dd&gt;
 
-&lt;dt&gt;&lt;code&gt;EUNIT_NOAUTO&lt;/code&gt;&lt;/dt&gt;
-&lt;dd&gt;If this macro is defined, the automatic exporting or stripping of
-test functions will be disabled.
+&lt;dt&gt;&lt;code&gt;NOASSERT&lt;/code&gt;&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, the assert macros will have no effect,
+when testing is also disabled. See &lt;a href=&quot;#Assert_macros&quot;&gt;Assert macros&lt;/a&gt;. When
+testing is enabled, the assert macros are always enabled automatically
+and cannot be disabled.
+&lt;/dd&gt;
+
+&lt;dt&gt;&lt;code&gt;ASSERT&lt;/code&gt;&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, it overrides the NOASSERT macro, forcing
+the assert macros to always be enabled regardless of other settings.
+&lt;/dd&gt;
+
+&lt;dt&gt;&lt;code&gt;NODEBUG&lt;/code&gt;&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, the debugging macros will have no effect.
+See &lt;a href=&quot;#Debugging_macros&quot;&gt;Debugging macros&lt;/a&gt;. &lt;code&gt;NODEBUG&lt;/code&gt; also implies &lt;code&gt;NOASSERT&lt;/code&gt;,
+unless testing is enabled.
+&lt;/dd&gt;
+
+&lt;dt&gt;&lt;code&gt;DEBUG&lt;/code&gt;&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, it overrides the NODEBUG macro, forcing
+the debugging macros to be enabled.
 &lt;/dd&gt;
 &lt;/dl&gt;
 
@@ -503,6 +528,10 @@ an &quot;&lt;code&gt;_&lt;/code&gt;&quot; (underscore) character, as in &lt;code&gt;?_assert(BoolExpr)&lt;/code
 a &quot;test object&quot; instead of performing the test immediately. This is
 equivalent to writing &lt;code&gt;?_test(assert(BoolExpr))&lt;/code&gt;, etc.)&lt;/p&gt;
 
+&lt;p&gt;If the macro &lt;code&gt;NOASSERT&lt;/code&gt; is defined before the EUnit header file is
+included, these macros have no effect when testing is also disabled; see
+&lt;a href=&quot;#Compilation_control_macros&quot;&gt;Compilation control macros&lt;/a&gt; for details.&lt;/p&gt;
+
 &lt;dl&gt;
 &lt;dt&gt;&lt;code&gt;assert(BoolExpr)&lt;/code&gt;&lt;/dt&gt;
 &lt;dd&gt;&lt;p&gt;Evaluates the expression &lt;code&gt;BoolExpr&lt;/code&gt;, if testing is enabled. Unless
@@ -513,7 +542,7 @@ the macro will not generate any code except the atom &lt;code&gt;ok&lt;/code&gt;, and
 &lt;code&gt;BoolExpr&lt;/code&gt; will not be evaluated.&lt;/p&gt;
 
 Typical usage:
-&lt;pre&gt;   ?assert(f(X, Y) == [])&lt;/pre&gt;
+&lt;pre&gt;   ?assert(f(X, Y) =:= [])&lt;/pre&gt;
 
 The &lt;code&gt;assert&lt;/code&gt; macro can be used anywhere in a program, not just in unit
 tests, to check pre/postconditions and invariants. For example:
@@ -627,7 +656,7 @@ A Unix-specific example:
 &lt;/dd&gt;
 &lt;/dl&gt;
 
-&lt;h4&gt;&lt;a name=&quot;Debugging_Macros&quot;&gt;Debugging Macros&lt;/a&gt;&lt;/h4&gt;
+&lt;h4&gt;&lt;a name=&quot;Debugging_macros&quot;&gt;Debugging macros&lt;/a&gt;&lt;/h4&gt;
 
 &lt;p&gt;To help with debugging, EUnit defines several useful macros for printing
 messages directly to the console (rather than to the standard output).
@@ -638,7 +667,8 @@ to simply click on the message and jump directly to the corresponding
 line in the code.&lt;/p&gt;
 
 &lt;p&gt;If the macro &lt;code&gt;NODEBUG&lt;/code&gt; is defined before the EUnit header file is
-included, these macros have no effect.&lt;/p&gt;
+included, these macros have no effect; see
+&lt;a href=&quot;#Compilation_control_macros&quot;&gt;Compilation control macros&lt;/a&gt; for details.&lt;/p&gt;
 
 &lt;dl&gt;
 &lt;dt&gt;&lt;code&gt;debugHere&lt;/code&gt;&lt;/dt&gt;
@@ -997,6 +1027,6 @@ function namespace and are comfortable with writing that kind of code.
 
 &lt;hr&gt;
 &lt;div class=&quot;navbar&quot;&gt;&lt;a name=&quot;#navbar_bottom&quot;&gt;&lt;/a&gt;&lt;table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;2&quot; summary=&quot;navigation bar&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;overview-summary.html&quot; target=&quot;overviewFrame&quot;&gt;Overview&lt;/a&gt;&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;http://www.erlang.org/&quot;&gt;&lt;img src=&quot;erlang.png&quot; align=&quot;right&quot; border=&quot;0&quot; alt=&quot;erlang logo&quot;&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
-&lt;p&gt;&lt;i&gt;Generated by EDoc, Oct 19 2008, 18:26:30.&lt;/i&gt;&lt;/p&gt;
+&lt;p&gt;&lt;i&gt;Generated by EDoc, Apr 19 2009, 22:38:35.&lt;/i&gt;&lt;/p&gt;
 &lt;/body&gt;
 &lt;/html&gt;</diff>
      <filename>lib/eunit/doc/overview-summary.html</filename>
    </modified>
    <modified>
      <diff>@@ -16,7 +16,7 @@
 and flexible, is easy to use, and has small syntactical overhead.
 
 &lt;ul&gt;
-&lt;li&gt;{@section Unit Testing}&lt;/li&gt;
+&lt;li&gt;{@section Unit testing}&lt;/li&gt;
 &lt;li&gt;{@section Terminology}&lt;/li&gt;
 &lt;li&gt;{@section Getting started}&lt;/li&gt;
 &lt;li&gt;{@section EUnit macros}&lt;/li&gt;
@@ -36,7 +36,7 @@ require changing existing code. Furthermore, tests that only exercise
 the exported functions of a module can always be placed in a completely
 separate module, avoiding any conflicts entirely.
 
-== Unit Testing ==
+== Unit testing ==
 
 Unit Testing is testing of individual program &quot;units&quot; in relative
 isolation. There is no particular size requirement: a unit can be a
@@ -234,7 +234,7 @@ causes a crash if the result is not what it should be.)
 
 If you want to use Boolean operators for your tests, the `assert'
 macro comes in handy (see {@section EUnit macros} for details):
-```length_test() -&gt; ?assert(length([1,2,3]) == 3).'''
+```length_test() -&gt; ?assert(length([1,2,3]) =:= 3).'''
 The `?assert(Expression)' macro will evaluate `Expression', and if that
 does not evaluate to `true', it will throw an exception; otherwise it
 just returns `ok'. In the above example, the test will thus fail if the
@@ -276,7 +276,7 @@ generator functions), so that it can be included in the test report if
 errors occur. To bypass EUnit and print text directly to the console
 while testing, you can write to the `user' output stream, as in
 `io:format(user, &quot;~w&quot;, [Term])'. The recommended way of doing this is to
-use the EUnit {@section Debugging Macros}, which make it much simpler.
+use the EUnit {@section Debugging macros}, which make it much simpler.
 
 === Writing test generating functions ===
 
@@ -295,10 +295,10 @@ of tests&lt;/em&gt; to be executed by EUnit.
 The most basic representation of a test is a single fun-expression that
 takes no arguments. For example, the following test generator:
 ```basic_test_() -&gt;
-       fun () -&gt; ?assert(1 + 1 == 2) end.'''
+       fun () -&gt; ?assert(1 + 1 =:= 2) end.'''
 will have the same effect as the following simple test:
 ```simple_test() -&gt;
-       ?assert(1 + 1 == 2).'''
+       ?assert(1 + 1 =:= 2).'''
 (in fact, EUnit will handle all simple tests just like it handles
 fun-expressions: it will put them in a list, and run them one by one).
 
@@ -310,7 +310,7 @@ occurred (and reduce the number of characters you have to type), you can
 use the `_test' macro (note the initial underscore character), like
 this:
 ```basic_test_() -&gt;
-       ?_test(?assert(1 + 1 == 2)).'''
+       ?_test(?assert(1 + 1 =:= 2)).'''
 The `_test' macro takes any expression (the &quot;body&quot;) as argument, and
 places it within a fun-expression (along with some extra information).
 The body can be any kind of test expression, just like the body of a
@@ -323,7 +323,7 @@ family of `assert' macros, have a corresponding form with an initial
 underscore character, which automatically adds a `?_test(...)' wrapper.
 The above example can then simply be written:
 ```basic_test_() -&gt;
-       ?_assert(1 + 1 == 2).'''
+       ?_assert(1 + 1 =:= 2).'''
 which has exactly the same meaning (note the `_assert' instead of
 `assert'). You can think of the initial underscore as signalling
 &lt;em&gt;test object&lt;/em&gt;.
@@ -341,14 +341,14 @@ small Erlang module shows how EUnit can be used in practice.
    fib(N) when N &gt; 1 -&gt; fib(N-1) + fib(N-2).
 
    fib_test_() -&gt;
-       [?_assert(fib(0) == 1),
-	?_assert(fib(1) == 1),
-	?_assert(fib(2) == 2),
-	?_assert(fib(3) == 3),
-	?_assert(fib(4) == 5),
-	?_assert(fib(5) == 8),
+       [?_assert(fib(0) =:= 1),
+	?_assert(fib(1) =:= 1),
+	?_assert(fib(2) =:= 2),
+	?_assert(fib(3) =:= 3),
+	?_assert(fib(4) =:= 5),
+	?_assert(fib(5) =:= 8),
 	?_assertException(error, function_clause, fib(-1)),
-	?_assert(fib(31) == 2178309)
+	?_assert(fib(31) =:= 2178309)
        ].'''
 
 (Author's note: When I first wrote this example, I happened to write a
@@ -417,7 +417,7 @@ your code is compiled with testing enabled or disabled.
 &lt;li&gt;{@section Utility macros}&lt;/li&gt;
 &lt;li&gt;{@section Assert macros}&lt;/li&gt;
 &lt;li&gt;{@section Macros for running external commands}&lt;/li&gt;
-&lt;li&gt;{@section Debugging Macros}&lt;/li&gt;
+&lt;li&gt;{@section Debugging macros}&lt;/li&gt;
 &lt;/ul&gt;
 
 === Basic macros ===
@@ -445,6 +445,12 @@ e.g., to ensure that the code can be compiled without including the
 EUnit header file, when testing is disabled. See also the macros `TEST'
 and `NOTEST'.
 &lt;/dd&gt;
+
+&lt;dt&gt;`EUNIT_NOAUTO'&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, the automatic exporting or stripping of
+test functions will be disabled.
+&lt;/dd&gt;
+
 &lt;dt&gt;`TEST'&lt;/dt&gt;
 &lt;dd&gt;This macro is always defined (to `true', unless previously defined
 by the user to have another value) whenever EUnit is enabled at compile
@@ -461,6 +467,7 @@ The `TEST' macro can also be used to override the `NOTEST' macro. If
 included (even if `NOTEST' is also defined), then the code will be
 compiled with EUnit enabled.
 &lt;/dd&gt;
+
 &lt;dt&gt;`NOTEST'&lt;/dt&gt;
 &lt;dd&gt;This macro is always defined (to `true', unless previously defined
 by the user to have another value) whenever EUnit is &lt;em&gt;disabled&lt;/em&gt;
@@ -473,9 +480,27 @@ is &lt;em&gt;not&lt;/em&gt; defined, then the code will be compiled with EUnit
 disabled. See also {@section Disabling testing}.
 &lt;/dd&gt;
 
-&lt;dt&gt;`EUNIT_NOAUTO'&lt;/dt&gt;
-&lt;dd&gt;If this macro is defined, the automatic exporting or stripping of
-test functions will be disabled.
+&lt;dt&gt;`NOASSERT'&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, the assert macros will have no effect,
+when testing is also disabled. See {@section Assert macros}. When
+testing is enabled, the assert macros are always enabled automatically
+and cannot be disabled.
+&lt;/dd&gt;
+
+&lt;dt&gt;`ASSERT'&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, it overrides the NOASSERT macro, forcing
+the assert macros to always be enabled regardless of other settings.
+&lt;/dd&gt;
+
+&lt;dt&gt;`NODEBUG'&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, the debugging macros will have no effect.
+See {@section Debugging macros}. `NODEBUG' also implies `NOASSERT',
+unless testing is enabled.
+&lt;/dd&gt;
+
+&lt;dt&gt;`DEBUG'&lt;/dt&gt;
+&lt;dd&gt;If this macro is defined, it overrides the NODEBUG macro, forcing
+the debugging macros to be enabled.
 &lt;/dd&gt;
 &lt;/dl&gt;
 
@@ -505,6 +530,10 @@ an &quot;`_'&quot; (underscore) character, as in `?_assert(BoolExpr)', that create
 a &quot;test object&quot; instead of performing the test immediately. This is
 equivalent to writing `?_test(assert(BoolExpr))', etc.)
 
+If the macro `NOASSERT' is defined before the EUnit header file is
+included, these macros have no effect when testing is also disabled; see
+{@section Compilation control macros} for details.
+
 &lt;dl&gt;
 &lt;dt&gt;`assert(BoolExpr)'&lt;/dt&gt;
 &lt;dd&gt;Evaluates the expression `BoolExpr', if testing is enabled. Unless
@@ -515,7 +544,7 @@ the macro will not generate any code except the atom `ok', and
 `BoolExpr' will not be evaluated.
 
 Typical usage:
-```?assert(f(X, Y) == [])'''
+```?assert(f(X, Y) =:= [])'''
 
 The `assert' macro can be used anywhere in a program, not just in unit
 tests, to check pre/postconditions and invariants. For example:
@@ -629,7 +658,7 @@ A Unix-specific example:
 &lt;/dd&gt;
 &lt;/dl&gt;
 
-=== Debugging Macros ===
+=== Debugging macros ===
 
 To help with debugging, EUnit defines several useful macros for printing
 messages directly to the console (rather than to the standard output).
@@ -640,7 +669,8 @@ to simply click on the message and jump directly to the corresponding
 line in the code.
 
 If the macro `NODEBUG' is defined before the EUnit header file is
-included, these macros have no effect.
+included, these macros have no effect; see
+{@section Compilation control macros} for details.
 
 &lt;dl&gt;
 &lt;dt&gt;`debugHere'&lt;/dt&gt;</diff>
      <filename>lib/eunit/doc/overview.edoc</filename>
    </modified>
    <modified>
      <diff>@@ -31,6 +31,30 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the EUnit application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Eunit 2.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;Mostly internal changes, in particular to the event
+	    protocol; fixes problems with timeouts that could cause
+	    eunit to hang, and makes it much easier to write new
+	    reporting back-ends.&lt;/p&gt;
+	    &lt;p&gt;New &quot;surefire&quot; report backend for Maven and
+	    Bamboo.&lt;/p&gt;
+	    &lt;p&gt;The test representation is no longer traversed twice
+	    (the first pass was for enumeration only). This
+	    eliminates some strange restrictions on how generators
+	    can be written, but it also means that reports cannot be
+	    quite as complete as before in the event of skipped
+	    tests.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7964&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
   &lt;section&gt;
     &lt;title&gt;EUnit 2.0.1&lt;/title&gt;
 </diff>
      <filename>lib/eunit/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@
 
 {application, eunit,
  [{description, &quot;EUnit&quot;},
-  {vsn, &quot;2.0.1&quot;},
+  {vsn, &quot;2.1&quot;},
   {modules, [eunit,
 	     eunit_autoexport,
 	     eunit_striptests,
@@ -10,9 +10,12 @@
 	     eunit_proc,
 	     eunit_serial,
 	     eunit_test,
+	     eunit_tests,
 	     eunit_lib,
+	     eunit_listener,
 	     eunit_data,
-	     eunit_tty]},
+	     eunit_tty,
+	     eunit_surefire]},
   {registered,[]},
   {applications, [stdlib]},
   {env, []}]}.</diff>
      <filename>lib/eunit/ebin/eunit.app</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-{&quot;2.0.1&quot;,[],[]}.
+{&quot;2.1&quot;,[],[]}.</diff>
      <filename>lib/eunit/ebin/eunit.appup</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_autoexport.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_data.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_proc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_serial.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_striptests.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_test.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_tests.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/eunit/ebin/eunit_tty.beam</filename>
    </modified>
    <modified>
      <diff>@@ -8,12 +8,12 @@ fib(1) -&gt; 1;
 fib(N) when N &gt; 1 -&gt; fib(N-1) + fib(N-2).
 
 fib_test_() -&gt;
-    [?_assert(fib(0) == 1),
-     ?_assert(fib(1) == 1),
-     ?_assert(fib(2) == 2),
-     ?_assert(fib(3) == 3),
-     ?_assert(fib(4) == 5),
-     ?_assert(fib(5) == 8),
+    [?_assert(fib(0) =:= 1),
+     ?_assert(fib(1) =:= 1),
+     ?_assert(fib(2) =:= 2),
+     ?_assert(fib(3) =:= 3),
+     ?_assert(fib(4) =:= 5),
+     ?_assert(fib(5) =:= 8),
      ?_assertException(error, function_clause, fib(-1)),
-     ?_assert(fib(31) == 2178309)
+     ?_assert(fib(31) =:= 2178309)
     ].</diff>
      <filename>lib/eunit/examples/fib.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$
+%% $Id: eunit.hrl 337 2009-03-09 08:38:28Z rcarlsson $
 %%
 %% Copyright (C) 2004-2006 Micka&#235;l R&#233;mond, Richard Carlsson
 
@@ -21,11 +21,17 @@
 %% is defined before the file is included. If both NOTEST and TEST are
 %% already defined, then TEST takes precedence, and NOTEST will become
 %% undefined.
+%% 
+%% If NODEBUG is defined before this file is included, the debug macros
+%% are disabled, unless DEBUG is also defined, in which case NODEBUG
+%% will become undefined. NODEBUG also implies NOASSERT, unless testing
+%% is enabled.
 %%
 %% If including this file causes TEST to be defined, then NOASSERT will
-%% be undefined, even if it was previously defined. If both ASSERT and
-%% NOASSERT are defined before the file is included, then ASSERT takes
-%% precedence, and NOASSERT will become undefined regardless of TEST.
+%% be undefined, even if it was previously defined and even if NODEBUG
+%% is defined. If both ASSERT and NOASSERT are defined before the file
+%% is included, then ASSERT takes precedence, and NOASSERT will become
+%% undefined regardless of TEST.
 %% 
 %% After including this file, EUNIT will be defined if and only if TEST
 %% is defined.
@@ -38,6 +44,11 @@
 -undef(NOTEST).
 -endif.
 
+%% allow defining DEBUG to override NODEBUG
+-ifdef(DEBUG).
+-undef(NODEBUG).
+-endif.
+
 %% allow NODEBUG to imply NOASSERT, unless overridden below
 -ifdef(NODEBUG).
 -ifndef(NOASSERT).
@@ -101,6 +112,22 @@
 -define(IF(B,T,F), (case (B) of true-&gt;(T); false-&gt;(F) end)).
 -endif.
 
+%% This macro yields 'true' if the value of E matches the guarded
+%% pattern G, otherwise 'false'.
+-ifndef(MATCHES).
+-define(MATCHES(G,E), (case (E) of G -&gt; true; _ -&gt; false end)).
+-endif.
+
+%% This macro can be used at any time to check whether or not the code
+%% is currently running directly under eunit. Note that it does not work
+%% in secondary processes if they have been assigned a new group leader.
+-ifndef(UNDER_EUNIT).
+-define(UNDER_EUNIT,
+	(?MATCHES({current_function,{eunit_proc,_,_}},
+		  .erlang:process_info(.erlang:group_leader(),
+				       current_function)))).
+-endif.
+
 -ifdef(NOASSERT).
 %% The plain assert macro should be defined to do nothing if this file
 %% is included when debugging/testing is turned off.
@@ -200,7 +227,8 @@
 				     &quot;{ &quot;++(??Class)++&quot; , &quot;++(??Term)
 				     ++&quot; , [...] }&quot;},
 				    {unexpected_exception,
-				     {__C, __T, erlang:get_stacktrace()}}]})
+				     {__C, __T,
+				      .erlang:get_stacktrace()}}]})
 	    end
 	  end)())).
 -endif.
@@ -289,12 +317,11 @@
 -else.
 -define(debugMsg(S),
 	(begin
-	     io:fwrite(user, &lt;&lt;&quot;~s:~w: ~s\n&quot;&gt;&gt;,
-		       [?FILE, ?LINE, S]),
+	     .io:fwrite(user, &lt;&lt;&quot;~s:~w: ~s\n&quot;&gt;&gt;, [?FILE, ?LINE, S]),
 	     ok
 	 end)).
 -define(debugHere, (?debugMsg(&quot;&lt;-&quot;))).
--define(debugFmt(S, As), (?debugMsg(io_lib:format((S), (As))))).
+-define(debugFmt(S, As), (?debugMsg(.io_lib:format((S), (As))))).
 -define(debugVal(E),
 	((fun (__V) -&gt;
 		  ?debugFmt(&lt;&lt;&quot;~s = ~P&quot;&gt;&gt;, [(??E), __V, 15]),</diff>
      <filename>lib/eunit/include/eunit.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -37,7 +37,9 @@ SOURCES= \
 	eunit_test.erl \
 	eunit_lib.erl \
 	eunit_data.erl \
-	eunit_tty.erl
+	eunit_tty.erl \
+	eunit_surefire.erl \
+	eunit_listener.erl
 
 INCLUDE_FILES = eunit.hrl
 </diff>
      <filename>lib/eunit/src/Makefile</filename>
    </modified>
    <modified>
      <diff>@@ -10,9 +10,12 @@
 	     eunit_proc,
 	     eunit_serial,
 	     eunit_test,
+	     eunit_tests,
 	     eunit_lib,
+	     eunit_listener,
 	     eunit_data,
-	     eunit_tty]},
+	     eunit_tty,
+	     eunit_surefire]},
   {registered,[]},
   {applications, [stdlib]},
   {env, []}]}.</diff>
      <filename>lib/eunit/src/eunit.app.src</filename>
    </modified>
    <modified>
      <diff>@@ -13,9 +13,9 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$
+%% $Id: eunit.erl 339 2009-04-05 14:10:47Z rcarlsson $
 %%
-%% @copyright 2004-2007 Micka&#235;l R&#233;mond, Richard Carlsson
+%% @copyright 2004-2009 Micka&#235;l R&#233;mond, Richard Carlsson
 %% @author Micka&#235;l R&#233;mond &lt;mickael.remond@process-one.net&gt;
 %%   [http://www.process-one.net/]
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
@@ -32,13 +32,15 @@
 -export([start/0, stop/0, test/1, test/2]).
 
 %% Experimental; may be removed or relocated
--export([start/1, stop/1, test/3, list/1, submit/1, submit/2, submit/3,
-	 watch/1, watch/2, watch/3, watch_path/1, watch_path/2,
-	 watch_path/3, watch_regexp/1, watch_regexp/2, watch_regexp/3,
-	 watch_app/1, watch_app/2, watch_app/3]).
+-export([start/1, stop/1, test/3, submit/1, submit/2, submit/3, watch/1,
+	 watch/2, watch/3, watch_path/1, watch_path/2, watch_path/3,
+	 watch_regexp/1, watch_regexp/2, watch_regexp/3, watch_app/1,
+	 watch_app/2, watch_app/3]).
 
 %% EUnit entry points
 
+%% TODO: Command line interface similar to that of edoc?
+
 %% @doc Starts the EUnit server. Normally, you don't need to call this
 %% function; it is started automatically.
 start() -&gt;
@@ -112,13 +114,6 @@ watch_app(Server, Name, Options) -&gt;
 	    error
     end.
 
-%% @private
-list(T) -&gt;
-    try eunit_data:list(T)
-    catch
-	{error, R} -&gt; {error, R}
-    end.
-
 %% @equiv test(Tests, [])
 test(Tests) -&gt;
     test(Tests, []).
@@ -128,7 +123,7 @@ test(Tests) -&gt;
 %% section &lt;a
 %% href=&quot;overview-summary.html#EUnit_test_representation&quot;&gt;EUnit test
 %% representation&lt;/a&gt; of the overview.
-%% 
+%%
 %% Example: ```eunit:test(fred)''' runs all tests in the module `fred'
 %% and also any tests in the module `fred_tests', if that module exists.
 %%
@@ -137,27 +132,21 @@ test(Tests) -&gt;
 %% &lt;dt&gt;`verbose'&lt;/dt&gt;
 %% &lt;dd&gt;Displays more details about the running tests.&lt;/dd&gt;
 %% &lt;/dl&gt;
+%%
+%% Options in the environment variable EUNIT are also included last in
+%% the option list, i.e., have lower precedence than those in `Options'.
 %% @see test/1
 test(Tests, Options) -&gt;
-    test(?SERVER, Tests, Options).
+    test(?SERVER, Tests, all_options(Options)).
 
 %% @private
 %% @doc See {@link test/2}.
 test(Server, Tests, Options) -&gt;
-    %% TODO: try to eliminate call to list/1
-    try eunit_data:list(Tests) of
-	List -&gt;
-	    Listeners = [eunit_tty:start(List, Options)
-			 | listeners(Options)],
-	    Serial = eunit_serial:start(Listeners),
-	    case eunit_server:start_test(Server, Serial, Tests, Options) of
-		{ok, Reference} -&gt; test_run(Reference, Listeners);
-		{error, R} -&gt; {error, R}
-	    end
-    catch
-	{error, R} -&gt;
-	    io:put_chars(eunit_lib:format_error(R)),
-	    {error, R}
+    Listeners = [eunit_tty:start(Options) | listeners(Options)],
+    Serial = eunit_serial:start(Listeners),
+    case eunit_server:start_test(Server, Serial, Tests, Options) of
+	{ok, Reference} -&gt; test_run(Reference, Listeners);
+	{error, R} -&gt; {error, R}
     end.
 
 test_run(Reference, Listeners) -&gt;
@@ -168,7 +157,7 @@ test_run(Reference, Listeners) -&gt;
     receive
 	{done, Reference} -&gt;
 	    cast(Listeners, {stop, Reference, self()}),
-	    receive 
+	    receive
 		{result, Reference, Result} -&gt;
 		    Result
 	    end
@@ -198,13 +187,25 @@ submit(Server, T, Options) -&gt;
     eunit_server:start_test(Server, Dummy, T, Options).
 
 listeners(Options) -&gt;
+    Ps = start_listeners(proplists:get_all_values(report, Options)),
+    %% the event_log option is for debugging, to view the raw events
     case proplists:get_value(event_log, Options) of
 	undefined -&gt;
-	    [];
-	LogFile -&gt;
-	    [spawn(fun () -&gt; event_logger(LogFile) end)]
+	    Ps;
+	X -&gt;
+	    LogFile = if is_list(X) -&gt; X;
+			 true -&gt; &quot;eunit-events.log&quot;
+		      end,
+	    [spawn_link(fun () -&gt; event_logger(LogFile) end) | Ps]
     end.
 
+start_listeners([P | Ps]) when is_pid(P) ; is_atom(P) -&gt;
+    [P | start_listeners(Ps)];
+start_listeners([{Mod, Opts} | Ps]) when is_atom(Mod) -&gt;
+    [Mod:start(Opts) | start_listeners(Ps)];	    
+start_listeners([]) -&gt;
+    [].
+
 %% TODO: make this report file errors
 event_logger(LogFile) -&gt;
     case file:open(LogFile, [write]) of
@@ -220,11 +221,11 @@ event_logger(LogFile) -&gt;
 event_logger_loop(Reference, FD) -&gt;
     receive
 	{status, _Id, _Info}=Msg -&gt;
-	    io:fwrite(FD, &quot;~w.\n&quot;, [Msg]),
+	    io:fwrite(FD, &quot;~p.\n&quot;, [Msg]),
 	    event_logger_loop(Reference, FD);
 	{stop, Reference, _ReplyTo} -&gt;
 	    %% no need to reply, just exit
-	    ok = file:close(FD),
+	    file:close(FD),
 	    exit(normal)
     end.
 
@@ -232,3 +233,18 @@ event_logger_loop(Reference, FD) -&gt;
 
 devnull() -&gt;
     receive _ -&gt; devnull() end.
+
+%% including options from EUNIT environment variable
+
+all_options(Opts) -&gt;
+    try os:getenv(&quot;EUNIT&quot;) of
+	false -&gt; Opts;
+	S -&gt;
+	    {ok, Ts, _} = erl_scan:string(S),
+	    {ok, V} = erl_parse:parse_term(Ts ++ [{dot,1}]),
+	    if is_list(V) -&gt; Opts ++ V;
+	       true -&gt; Opts ++ [V]
+	    end
+    catch
+	_:_ -&gt; Opts
+    end.</diff>
      <filename>lib/eunit/src/eunit.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_autoexport.erl 329 2009-03-01 11:23:32Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
@@ -62,6 +62,8 @@ form({function, _L, Name, 0, _Cs}, S, TestSuffix, GeneratorSuffix,
 		    end
 	    end
     end;
+form({function, _L, ?DEFAULT_MODULE_WRAPPER_NAME, 1, _Cs}, S, _, _, _) -&gt;
+    sets:add_element({?DEFAULT_MODULE_WRAPPER_NAME,1}, S);
 form(_, S, _, _, _) -&gt;
     S.
 </diff>
      <filename>lib/eunit/src/eunit_autoexport.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_data.erl 339 2009-04-05 14:10:47Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
@@ -28,8 +28,8 @@
 
 -include_lib(&quot;kernel/include/file.hrl&quot;).
 
--export([list/1, iter_init/2, iter_next/2, iter_prev/2, iter_id/1, 
-	 list_size/1, enter_context/3]).
+-export([iter_init/2, iter_next/1, iter_prev/1, iter_id/1,
+	 enter_context/3, get_module_tests/1]).
 
 -import(lists, [foldr/3]).
 
@@ -97,9 +97,14 @@
 %%
 %% @type moduleName() = atom()
 %% @type functionName() = atom()
+%% @type arity() = integer()
 %% @type appName() = atom()
 %% @type fileName() = string()
 
+%% TODO: Can we mark up tests as known-failures?
+%% TODO: Is it possible to handle known timout/setup failures?
+%% TODO: Add diagnostic tests which never fail, but may cause warnings?
+
 %% ---------------------------------------------------------------------
 %% Abstract test set iterator
 
@@ -121,17 +126,7 @@ iter_init(Tests, ParentID) -&gt;
 iter_id(#iter{pos = N, parent = Ns}) -&gt;
     lists:reverse(Ns, [N]).
 
-%% @spec (testIterator(), Handler) -&gt; none | {testItem(), testIterator()}
-%%    Handler = (term()) -&gt; term()
-
-iter_next(I, H) -&gt;
-    iter_do(fun iter_next/1, I, H).
-
-iter_do(F, I, H) -&gt;
-    try F(I)
-    catch
-	throw:R -&gt; H(R)
-    end.
+%% @spec (testIterator()) -&gt; none | {testItem(), testIterator()}
 
 iter_next(I = #iter{next = []}) -&gt;
     case next(I#iter.tests) of
@@ -147,11 +142,7 @@ iter_next(I = #iter{next = [T | Ts]}) -&gt;
 	       prev = [T | I#iter.prev],
 	       pos = I#iter.pos + 1}}.
 
-%% @spec (testIterator(), Handler) -&gt; none | {testItem(), testIterator()}
-%%    Handler = (term()) -&gt; term()
-
-iter_prev(I, H) -&gt;
-    iter_do(fun iter_prev/1, I, H).
+%% @spec (testIterator()) -&gt; none | {testItem(), testIterator()}
 
 iter_prev(#iter{prev = []}) -&gt;
     none;
@@ -382,18 +373,24 @@ parse({with, X, As}=T) when is_list(As) -&gt;
     case As of
 	[A | As1] -&gt;
 	    check_arity(A, 1, T),
-	    {data, [fun () -&gt; A(X) end, {with, X, As1}]};
+	    {data, [{eunit_lib:fun_parent(A), fun () -&gt; A(X) end},
+		    {with, X, As1}]};
 	[] -&gt;
 	    {data, []}
     end;
 parse({S, T1} = T) when is_list(S) -&gt;
     case eunit_lib:is_string(S) of
 	true -&gt;
-	    group(#group{tests = T1, desc = S});
+	    group(#group{tests = T1, desc = list_to_binary(S)});
 	false -&gt;
 	    bad_test(T)
     end;
-parse(T) when tuple_size(T) &gt; 2, is_list(element(1, T)) -&gt;
+parse({S, T1}) when is_binary(S) -&gt;
+    group(#group{tests = T1, desc = S});
+parse(T) when is_tuple(T), size(T) &gt; 2, is_list(element(1, T)) -&gt;
+    [S | Es] = tuple_to_list(T),
+    parse({S, list_to_tuple(Es)});
+parse(T) when is_tuple(T), size(T) &gt; 2, is_binary(element(1, T)) -&gt;
     [S | Es] = tuple_to_list(T),
     parse({S, list_to_tuple(Es)});
 parse(M) when is_atom(M) -&gt;
@@ -417,15 +414,16 @@ parse(T) -&gt;
 
 parse_simple({L, F}) when is_integer(L), L &gt;= 0 -&gt;
     (parse_simple(F))#test{line = L};
+parse_simple({{M,N,A}=Loc, F}) when is_atom(M), is_atom(N), is_integer(A) -&gt;
+    (parse_simple(F))#test{location = Loc};
 parse_simple(F) -&gt;
     parse_function(F).
 
 parse_function(F) when is_function(F) -&gt;
     check_arity(F, 0, F),
-    {module, M} = erlang:fun_info(F, module),
-    #test{f = F, module = M, name = eunit_lib:fun_parent(F)};
+    #test{f = F, location = eunit_lib:fun_parent(F)};
 parse_function({M,F}) when is_atom(M), is_atom(F) -&gt;
-    #test{f = eunit_test:function_wrapper(M, F), module = M, name = F};
+    #test{f = eunit_test:function_wrapper(M, F), location = {M, F, 0}};
 parse_function(F) -&gt;
     bad_test(F).
 
@@ -546,31 +544,38 @@ push_order(_, _, G) -&gt;
 %% @throws {module_not_found, moduleName()}
 
 get_module_tests(M) -&gt;
-    TestSuffix = ?DEFAULT_TEST_SUFFIX,
-    GeneratorSuffix = ?DEFAULT_GENERATOR_SUFFIX,
     try M:module_info(exports) of
 	Es -&gt;
-	    Fs = testfuns(Es, M, TestSuffix, GeneratorSuffix),
-	    Name = atom_to_list(M),
-	    case lists:suffix(?DEFAULT_TESTMODULE_SUFFIX, Name) of
-		false -&gt;
-		    Name1 = Name ++ ?DEFAULT_TESTMODULE_SUFFIX,
-		    M1 = list_to_atom(Name1),
-		    try get_module_tests(M1) of
-			Fs1 -&gt;
-			    Fs ++ [{&quot;module '&quot; ++ Name1 ++ &quot;'&quot;, Fs1}]
-		    catch
-			{module_not_found, M1} -&gt;
-			    Fs
-		    end;
-		true -&gt;
-		    Fs
+	    Fs = get_module_tests_1(M, Es),
+	    W = ?DEFAULT_MODULE_WRAPPER_NAME,
+	    case lists:member({W,1}, Es) of
+		false -&gt; Fs;
+		true -&gt; {generator, fun () -&gt; M:W(Fs) end}
 	    end
     catch
 	error:undef -&gt; 
 	    throw({module_not_found, M})
     end.
 
+get_module_tests_1(M, Es) -&gt;
+    Fs = testfuns(Es, M, ?DEFAULT_TEST_SUFFIX,
+		  ?DEFAULT_GENERATOR_SUFFIX),
+    Name = atom_to_list(M),
+    case lists:suffix(?DEFAULT_TESTMODULE_SUFFIX, Name) of
+	false -&gt;
+	    Name1 = Name ++ ?DEFAULT_TESTMODULE_SUFFIX,
+	    M1 = list_to_atom(Name1),
+	    try get_module_tests(M1) of
+		Fs1 -&gt;
+		    Fs ++ [{&quot;module '&quot; ++ Name1 ++ &quot;'&quot;, Fs1}]
+	    catch
+		{module_not_found, M1} -&gt;
+		    Fs
+	    end;
+	true -&gt;
+	    Fs
+    end.
+
 testfuns(Es, M, TestSuffix, GeneratorSuffix) -&gt;
     foldr(fun ({F, 0}, Fs) -&gt;
 		  N = atom_to_list(F),
@@ -673,74 +678,6 @@ enter_context(#context{setup = S, cleanup = C, process = P}, I, F) -&gt;
     eunit_test:enter_context(S, C, I, F1).
 
 
-%% ---------------------------------------------------------------------
-%% Returns a symbolic listing of a set of tests
-%%
-%% @type testInfoList() = [Entry]
-%%   Entry = {item, testId(), Description, testName()}
-%%         | {group, testId(), Description, testInfoList}
-%%   Description = string()
-%% @type testId() = [integer()]
-%% @type testName() = {moduleName(), functionName()}
-%%		    | {moduleName(), functionName(), lineNumber()}
-%% @type lineNumber() = integer().  Proper line numbers are always &gt;= 1.
-%%
-%% @throws {bad_test, term()}
-%%       | {generator_failed, exception()}
-%%       | {no_such_function, eunit_lib:mfa()}
-%%       | {module_not_found, moduleName()}
-%%       | {application_not_found, appName()}
-%%       | {file_read_error, {Reason::atom(), Message::string(),
-%%                            fileName()}}
-%%       | {context_error, instantiation_failed, eunit_lib:exception()}
-
-list(T) -&gt;
-    list(T, []).
-
-list(T, ParentID) -&gt;
-    list_loop(iter_init(T, ParentID)).
-
-list_loop(I) -&gt;
-    case iter_next(I, fun (R) -&gt; throw({error, R}) end) of
- 	{T, I1} -&gt;
-	    Id = iter_id(I1),
- 	    case T of
-		#test{} -&gt;
-		    Name = case T#test.line of
-			       0 -&gt; {T#test.module, T#test.name};
-			       Line -&gt; {T#test.module, T#test.name, Line}
-			   end,
-		    [{item, Id, desc_string(T#test.desc), Name}
-		     | list_loop(I1)];
-		#group{context = Context} -&gt;
-		    [{group, Id, desc_string(T#group.desc),
-		      list_context(Context, T#group.tests, Id)}
-		     | list_loop(I1)]
-	    end;
- 	none -&gt;
- 	    []
-    end.
-
-desc_string(undefined) -&gt; &quot;&quot;;
-desc_string(S) -&gt; S.
-
-list_context(undefined, T, ParentId) -&gt;
-    list(T, ParentId);
-list_context(#context{process = local}, T, ParentId) -&gt;
-    browse_context(T, fun (T) -&gt; list(T, ParentId) end);
-list_context(#context{process = spawn}, T, ParentId) -&gt;
-    browse_context(T, fun (T) -&gt; list({spawn, T}, ParentId) end);
-list_context(#context{process = {spawn, N}}, T, ParentId) -&gt;
-    browse_context(T, fun (T) -&gt; list({spawn, N, T}, ParentId) end).
-
-browse_context(T, F) -&gt;
-    eunit_test:browse_context(T, F).
-
-list_size({item, _, _, _}) -&gt; 1;
-list_size({group, _, _, Es}) -&gt; list_size(Es);    
-list_size(Es) when is_list(Es) -&gt;
-    lists:foldl(fun (E, N) -&gt; N + list_size(E) end, 0, Es).
-
 -ifdef(TEST).
 generator_exported_() -&gt;
     generator().</diff>
      <filename>lib/eunit/src/eunit_data.erl</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
-%%%-------------------------------------------------------------------
+%% -------------------------------------------------------------------
 %% File: eunit_internal.hrl
 %%
-%% $Id$ 
+%% $Id: eunit_internal.hrl 329 2009-03-01 11:23:32Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
@@ -15,6 +15,7 @@
 -define(DEFAULT_GROUP_TIMEOUT, infinity).
 -define(DEFAULT_TEST_TIMEOUT, 5000).
 -define(DEFAULT_SETUP_PROCESS, spawn).
+-define(DEFAULT_MODULE_WRAPPER_NAME, eunit_wrapper_).
 
 -ifdef(DEBUG).
 -define(debugmsg(S),io:fwrite(&quot;\n* ~s: ~s\n&quot;, [?MODULE,S])).
@@ -31,8 +32,7 @@
 -record(test, {f = undefined,
 	       desc = undefined,
 	       timeout = undefined,
-	       module = undefined,
-	       name = undefined,
+	       location = undefined,
 	       line = 0
 	      }).
 </diff>
      <filename>lib/eunit/src/eunit_internal.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$
+%% $Id: eunit_lib.erl 339 2009-04-05 14:10:47Z rcarlsson $
 %%
 %% @copyright 2004-2007 Micka&#235;l R&#233;mond, Richard Carlsson
 %% @author Micka&#235;l R&#233;mond &lt;mickael.remond@process-one.net&gt;
@@ -30,10 +30,10 @@
 -include(&quot;eunit_internal.hrl&quot;).
 
 
--export([dlist_next/1, uniq/1, fun_parent/1, is_string/1, browse_fun/1,
-	 command/1, command/2, command/3, trie_new/0, trie_store/2,
-	 trie_match/2, split_node/1, consult_file/1, list_dir/1,
-	 format_exit_term/1, format_exception/1, format_error/1]).
+-export([dlist_next/1, uniq/1, fun_parent/1, is_string/1, command/1,
+	 command/2, command/3, trie_new/0, trie_store/2, trie_match/2,
+	 split_node/1, consult_file/1, list_dir/1, format_exit_term/1,
+	 format_exception/1, format_error/1]).
 
 
 %% Type definitions for describing exceptions
@@ -61,7 +61,7 @@ format_exception({Class,Term,Trace})
     case is_stacktrace(Trace) of
 	true -&gt;
 	    io_lib:format(&quot;~w:~P\n~s&quot;,
-			  [Class, Term, 15, format_stacktrace(Trace)]);
+			  [Class, Term, 20, format_stacktrace(Trace)]);
 	false -&gt;
 	    format_term(Term)
     end;
@@ -153,13 +153,13 @@ format_error({application_not_found, A}) when is_atom(A) -&gt;
     error_msg(&quot;application not found&quot;, &quot;~w&quot;, [A]);
 format_error({file_read_error, {_R, Msg, F}}) -&gt;
     error_msg(&quot;error reading file&quot;, &quot;~s: ~s&quot;, [Msg, F]);
-format_error({context_error, setup_failed, Exception}) -&gt;
+format_error({setup_failed, Exception}) -&gt;
     error_msg(&quot;context setup failed&quot;, &quot;~s&quot;,
 	      [format_exception(Exception)]);
-format_error({context_error, cleanup_failed, Exception}) -&gt;
+format_error({cleanup_failed, Exception}) -&gt;
     error_msg(&quot;context cleanup failed&quot;, &quot;~s&quot;,
 	      [format_exception(Exception)]);
-format_error({context_error, instantiation_failed, Exception}) -&gt;
+format_error({instantiation_failed, Exception}) -&gt;
     error_msg(&quot;instantiation of subtests failed&quot;, &quot;~s&quot;,
 	      [format_exception(Exception)]).
 
@@ -310,23 +310,26 @@ split_node_2(As, Cs) -&gt;
 %% ---------------------------------------------------------------------
 %% Get the name of the containing function for a fun. (This is encoded
 %% in the name of the generated function that implements the fun.)
-
 fun_parent(F) -&gt;
+    {module, M} = erlang:fun_info(F, module),
     {name, N} = erlang:fun_info(F, name),
     case erlang:fun_info(F, type) of
 	{type, external} -&gt;
-	    N;
+	    {arity, A} = erlang:fun_info(F, arity),
+	    {M, N, A};
 	{type, local} -&gt;
-	    S = atom_to_list(N),
-	    list_to_atom(string:sub_string(S, 2, string:chr(S, $/) - 1))
+	    [$-|S] = atom_to_list(N),
+	    C1 = string:chr(S, $/),
+	    C2 = string:chr(S, $-),
+	    {M, list_to_atom(string:sub_string(S, 1, C1 - 1)),
+	     list_to_integer(string:sub_string(S, C1 + 1, C2 - 1))}
     end.
 
 -ifdef(TEST).
 fun_parent_test() -&gt;
-    fun_parent_test = fun_parent(fun () -&gt; ok end).
+    {?MODULE,fun_parent_test,0} = fun_parent(fun () -&gt; ok end).
 -endif.
 
-
 %% ---------------------------------------------------------------------
 %% Ye olde uniq function
 
@@ -348,121 +351,12 @@ uniq_test_() -&gt;
      ]}.
 -endif.
 
-
-%% ---------------------------------------------------------------------
-%% Apply arbitrary unary function F with dummy arguments &quot;until it
-%% works&quot;. (F must be side effect free! It will be called repeatedly.)
-%% No exceptions will be thrown unless the function actually crashes for
-%% some other reason than being unable to match the argument.
-
-%% @spec (F::(any()) -&gt; any()) -&gt; {Value::any(), Result::any()}
-
-browse_fun(F) -&gt;
-    browse_fun(F, arg_values()).
-
-browse_fun(F, Next) -&gt;
-    case Next() of
-	[V | Next1] -&gt;
-	    case try_apply(F, V) of
-		{ok, Result} -&gt;
-		    {V, Result};
-		{error, function_clause} -&gt;
-		    browse_fun(F, Next1);
-		{error, badarity} -&gt;
-		    erlang:error({badarity, {F, 1}});
-		{error, {Class, Reason, Trace}} -&gt;
-		    erlang:raise(Class, Reason, Trace)
-	    end;
-	[] -&gt;
-	    %% tried everything - this ought to provoke an error
-	    F(undefined)
-    end.
-
-%% Apply argument to function and report whether it succeeded (and with
-%% what return value), or failed due to bad arity or a simple top-level
-%% function_clause error, or if it crashed in some other way.
-
-%% @spec (F::(any()) -&gt; any(), V::any()) -&gt; 
-%%     {ok, Result::any()}
-%%   | {error, function_clause | badarity | eunit_test:exception()}
-
-try_apply(F, Arg) -&gt;
-    case erlang:fun_info(F, arity) of
-	{arity, 1} -&gt;
-	    {module, M} = erlang:fun_info(F, module),
-	    {name, N} = erlang:fun_info(F, name),
-	    try_apply(F, Arg, M, N);
-	_ -&gt;
-	    {error, badarity}
-    end.
-
-try_apply(F, Arg, M, N) -&gt;
-    try F(Arg) of
-	X -&gt; {ok, X}
-    catch
-	error:function_clause -&gt;
-	    case erlang:get_stacktrace() of
-		[{M, N, _Args} | _] -&gt;
-		    {error, function_clause};
-		Trace -&gt;
-		    {error, {error, function_clause, Trace}}
-	    end;
-	  Class:Reason -&gt;
-	    {error, {Class, Reason, erlang:get_stacktrace()}}
-    end.
-
-%% test value producers for function browsing
-
-arg_values() -&gt;
-    Vs = [undefined, ok, true, false, 0, 1],
-    fun () -&gt; arg_values(Vs) end.
-
-arg_values([V | Vs]) -&gt;
-    [V | fun () -&gt; arg_values(Vs) end];
-arg_values(_) -&gt;
-    (arg_tuples())().
-
-arg_tuples() -&gt;
-    fun () -&gt; arg_tuples(0) end.
-
-arg_tuples(N) when N &gt;= 0, N =&lt; 12 -&gt;
-    [erlang:make_tuple(N, undefined) | fun () -&gt; arg_tuples(N + 1) end];
-arg_tuples(_) -&gt;
-    (arg_lists())().
-
-arg_lists() -&gt;
-    fun () -&gt; arg_lists(0) end.
-
-arg_lists(N) when N &gt;= 0, N =&lt; 12 -&gt;
-    [lists:duplicate(N, undefined) | fun () -&gt; arg_lists(N + 1) end];
-arg_lists(_) -&gt;
-    [].
-
--ifdef(TEST).
-browse_fun_test_() -&gt;
-    {&quot;browsing funs&quot;,
-     [?_assertError({badarity, {_, 1}}, browse_fun(fun () -&gt; ok end)),
-      ?_assertError({badarity, {_, 1}}, browse_fun(fun (_,_) -&gt; ok end)),
-      ?_assertError(function_clause, browse_fun(fun (42) -&gt; ok end)),
-      ?_test({_, 17} = browse_fun(fun (_) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun (undefined) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun (ok) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun (true) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ({}) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ({_}) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ({_,_}) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ({_,_,_}) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ([]) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ([_]) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ([_,_]) -&gt; 17 end)),
-      ?_test({_, 17} = browse_fun(fun ([_,_,_]) -&gt; 17 end))
-     ]}.
--endif.
-
-
 %% ---------------------------------------------------------------------
 %% Replacement for os:cmd
 
+%% TODO: Better cmd support, especially on Windows (not much tested)
+%% TODO: Can we capture stderr separately somehow?
+
 command(Cmd) -&gt;
     command(Cmd, &quot;&quot;).
 
@@ -470,10 +364,10 @@ command(Cmd, Dir) -&gt;
     command(Cmd, Dir, []).
 
 command(Cmd, Dir, Env) -&gt;
-    CD = if Dir == &quot;&quot; -&gt; [];
+    CD = if Dir =:= &quot;&quot; -&gt; [];
 	    true -&gt; [{cd, Dir}]
 	 end,
-    SetEnv = if Env == [] -&gt; []; 
+    SetEnv = if Env =:= [] -&gt; []; 
 		true -&gt; [{env, Env}]
 	     end,
     Opt = CD ++ SetEnv ++ [stream, exit_status, use_stdio,
@@ -587,7 +481,7 @@ trie_store([_ | _], []) -&gt;
 trie_store([E | Es], T) -&gt;
     case gb_trees:lookup(E, T) of
 	none -&gt;
-	    if Es == [] -&gt;
+	    if Es =:= [] -&gt;
 		    gb_trees:insert(E, [], T);
 	       true -&gt;
 		    gb_trees:insert(E, trie_store(Es, gb_trees:empty()),
@@ -608,7 +502,7 @@ trie_match([E | Es], T) -&gt;
 	none -&gt;
 	    no;
 	{value, []} -&gt;
-	    if Es == [] -&gt; exact;
+	    if Es =:= [] -&gt; exact;
 	       true -&gt; prefix
 	    end;
 	{value, T1} -&gt;
@@ -623,16 +517,16 @@ trie_match([], _T) -&gt;
 
 trie_test_() -&gt;
     [{&quot;basic representation&quot;,
-      [?_assert(trie_new() == gb_trees:empty()),
+      [?_assert(trie_new() =:= gb_trees:empty()),
        ?_assert(trie_store([1], trie_new())
-		== gb_trees:insert(1, [], gb_trees:empty())),
+		=:= gb_trees:insert(1, [], gb_trees:empty())),
        ?_assert(trie_store([1,2], trie_new())
-		== gb_trees:insert(1,
-				   gb_trees:insert(2, [],
-						   gb_trees:empty()),
-				   gb_trees:empty())),
-       ?_assert([] == trie_store([1], [])),
-       ?_assert([] == trie_store([], gb_trees:empty()))
+		=:= gb_trees:insert(1,
+				    gb_trees:insert(2, [],
+						    gb_trees:empty()),
+				    gb_trees:empty())),
+       ?_assert([] =:= trie_store([1], [])),
+       ?_assert([] =:= trie_store([], gb_trees:empty()))
       ]},
      {&quot;basic storing and matching&quot;,
       [?_test(no = trie_match([], trie_new())),</diff>
      <filename>lib/eunit/src/eunit_lib.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_proc.erl 339 2009-04-05 14:10:47Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
@@ -28,6 +28,8 @@
 
 -export([start/4]).
 
+%% This must be exported; see new_group_leader/1 for details.
+-export([group_leader_process/1]).
 
 -record(procstate, {ref, id, super, insulator, parent, order}).
 
@@ -37,7 +39,7 @@
 %% wait_for_task/2 for details about the need for the reference.
 %%
 %% The `Super' process receives a stream of status messages; see
-%% status_message/3 for details.
+%% message_super/3 for details.
 
 start(Tests, Order, Super, Reference)
   when is_pid(Super), is_reference(Reference) -&gt;
@@ -57,22 +59,29 @@ start(Tests, Order, Super, Reference)
 %% where Id identifies the item that the message pertains to, and the
 %% Info part can be one of:
 %%
-%%   {progress, 'begin', test | group}
-%%       indicates that the item has been entered, and what type it is
+%%   {progress, 'begin', {test | group, Data}}
+%%       indicates that the item has been entered, and what type it is;
+%%       Data is [{desc,binary()}, {source,Source}, {line,integer()}] for
+%%       a test, and [{desc,binary()}, {spawn,SpawnType},
+%%       {order,OrderType}] for a group.
 %%
-%%   {progress, 'end', {Status, Time::integer(), Output::io_list()}}
-%%       Status = 'ok' | {error, Exception} | {skipped, Cause}
+%%   {progress, 'end', {Status, Data}}
+%%       Status = 'ok' | {error, Exception} | {skipped, Cause} | integer()
+%%       Data = [{time,integer()}, {output,binary()}]
 %%
 %%       where Time is measured in milliseconds and Output is the data
 %%       written to the standard output stream during the test; if
 %%       Status is {skipped, Cause}, then Cause is a term thrown from
-%%       eunit_test:run_testfun/1
+%%       eunit_test:run_testfun/1. For a group item, the Status field is
+%%       the number of immediate subitems of the group; this helps the
+%%       collation of results. Failure for groups is always signalled
+%%       through a cancel message, not through the Status field.
 %%
 %%   {cancel, Descriptor}
 %%       where Descriptor can be:
 %%           timeout            a timeout occurred
 %%           {blame, Id}        forced to terminate because of item `Id'
-%%           {abort, Cause}     the test failed to execute
+%%           {abort, Cause}     the test or group failed to execute
 %%           {exit, Reason}     the test process terminated unexpectedly
 %%           {startup, Reason}  failed to start a remote test process
 %%
@@ -85,9 +94,8 @@ start(Tests, Order, Super, Reference)
 %% with one exception: a 'begin' message will always arrive before its
 %% corresponding 'end' message.
 
-status_message(Id, Info, St) -&gt;
-    St#procstate.super ! {status, Id, Info},
-    ok.
+message_super(Id, Info, St) -&gt;
+    St#procstate.super ! {status, Id, Info}.
 
 
 %% @TODO implement synchronized mode for insulator/child execution
@@ -155,14 +163,13 @@ start_task(Type, Fun, St0) -&gt;
 	    %% messages sent by the process itself)
 	    receive
 		{ok, Reference, Pid} -&gt;
-		    ok;
+		    Pid;
 		{'DOWN', Monitor, process, Pid, Reason} -&gt;
 		    %% send messages as if the insulator process was
 		    %% started, but terminated on its own accord
 		    Msg = {startup, Reason},
-		    status_message(St#procstate.id, {cancel, Msg}, St),
-		    self() ! {done, Reference, Pid},
-		    ok
+		    message_super(St#procstate.id, {cancel, Msg}, St),
+		    self() ! {done, Reference, Pid}
 	    end,
 	    erlang:demonitor(Monitor, [flush]),
 	    Pid
@@ -221,23 +228,35 @@ insulator_process(Type, Fun, St0) -&gt;
 
 insulator_wait(Child, Parent, Buf, St) -&gt;
     receive
-	{io_request, From, ReplyAs, Req} when is_pid(From) -&gt;
-	    Buf1 = io_request(From, ReplyAs, Req, hd(Buf)),
-	    insulator_wait(Child, Parent, [Buf1 | tl(Buf)], St);
-	{progress, Child, Id, 'begin', Class} -&gt;
-	    status_message(Id, {progress, 'begin', Class}, St),
+	{child, Child, Id, {'begin', Type, Data}} -&gt;
+	    message_super(Id, {progress, 'begin', {Type, Data}}, St),
 	    insulator_wait(Child, Parent, [[] | Buf], St);
-	{progress, Child, Id, 'end', {Status, Time}} -&gt;
-	    Msg = {Status, Time, lists:reverse(hd(Buf))},
-	    status_message(Id, {progress, 'end', Msg}, St),
+	{child, Child, Id, {'end', Status, Time}} -&gt;
+	    Data = [{time, Time}, {output, buffer_to_binary(hd(Buf))}],
+	    message_super(Id, {progress, 'end', {Status, Data}}, St),
 	    insulator_wait(Child, Parent, tl(Buf), St);
-	{cancel, Child, Id, Reason} -&gt;
-	    status_message(Id, {cancel, Reason}, St),
+	{child, Child, Id, {skipped, Reason}} -&gt;
+	    %% this happens when a subgroup fails to enter the context
+	    message_super(Id, {cancel, {abort, Reason}}, St),
 	    insulator_wait(Child, Parent, Buf, St);
-	{abort, Child, Id, Cause} -&gt;
+	{child, Child, Id, {abort, Cause}} -&gt;
+	    %% this happens when the child code threw an internal
+	    %% eunit_abort; the child process has already exited
 	    exit_messages(Id, {abort, Cause}, St),
 	    %% no need to wait for the {'EXIT',Child,_} message
 	    terminate_insulator(St);
+	{io_request, Child, ReplyAs, Req} -&gt;
+	    %% we only collect output from the child process itself, not
+	    %% from secondary processes, otherwise we get race problems;
+	    %% however, each test runs its personal group leader that
+	    %% funnels all output - see the run_test() function
+	    Buf1 = io_request(Child, ReplyAs, Req, hd(Buf)),
+	    insulator_wait(Child, Parent, [Buf1 | tl(Buf)], St);
+	{io_request, From, ReplyAs, Req} when is_pid(From) -&gt;
+	    %% (this shouldn't happen anymore, but we keep it safe)
+	    %% just ensure the sender gets a reply; ignore the data
+	    io_request(From, ReplyAs, Req, []),
+	    insulator_wait(Child, Parent, Buf, St);
 	{timeout, Child, Id} -&gt;
 	    exit_messages(Id, timeout, St),
 	    kill_task(Child, St);
@@ -251,15 +270,16 @@ insulator_wait(Child, Parent, Buf, St) -&gt;
 	    kill_task(Child, St)
     end.
 
--spec kill_task(pid(), #procstate{}) -&gt; no_return().
 kill_task(Child, St) -&gt;
     exit(Child, kill),
     terminate_insulator(St).
 
+buffer_to_binary([B]) when is_binary(B) -&gt; B;  % avoid unnecessary copying
+buffer_to_binary(Buf) -&gt; list_to_binary(lists:reverse(Buf)).
+
 %% Unlinking before exit avoids polluting the parent process with exit
 %% signals from the insulator. The child process is already dead here.
 
--spec terminate_insulator(#procstate{}) -&gt; no_return().
 terminate_insulator(St) -&gt;
     %% messaging/unlinking is ok even if the parent is already dead
     Parent = St#procstate.parent,
@@ -271,27 +291,17 @@ terminate_insulator(St) -&gt;
 %% the Id of the insulator itself, if they are different
 exit_messages(Id, Cause, St) -&gt;
     %% the message for the most specific Id is always sent first
-    status_message(Id, {cancel, Cause}, St),
+    message_super(Id, {cancel, Cause}, St),
     case St#procstate.id of
 	Id -&gt; ok;
-	Id1 -&gt; status_message(Id1, {cancel, {blame, Id}}, St)
+	Id1 -&gt; message_super(Id1, {cancel, {blame, Id}}, St)
     end.
 
 %% Child processes send all messages via the insulator to ensure proper
 %% sequencing with timeouts and exit signals.
 
-abort_message(Cause, St) -&gt;
-    St#procstate.insulator ! {abort, self(), St#procstate.id, Cause},
-    ok.
-
-cancel_message(Msg, St) -&gt;
-    St#procstate.insulator ! {cancel, self(), St#procstate.id, Msg},
-    ok.
-
-progress_message(Type, Data, St) -&gt;
-    St#procstate.insulator ! {progress, self(), St#procstate.id,
-			      Type, Data},
-    ok.
+message_insulator(Data, St) -&gt;
+    St#procstate.insulator ! {child, self(), St#procstate.id, Data}.
 
 %% Timeout handling
 
@@ -329,46 +339,51 @@ with_timeout(Time, F, St) when is_integer(Time) -&gt;
 	clear_timeout(Ref)
     end.
 
-%% The normal behaviour of a child process is to trap exit signals. This
-%% makes it easier to write tests that spawn off separate (linked)
-%% processes and test whether they terminate as expected. The testing
-%% framework is not dependent on this, however, so the test code is
-%% allowed to disable signal trapping as it pleases.
+%% The normal behaviour of a child process is not to trap exit
+%% signals. The testing framework is not dependent on this, however, so
+%% the test code is allowed to enable signal trapping as it pleases.
 %% Note that I/O is redirected to the insulator process.
 
 %% @spec (() -&gt; term(), #procstate{}) -&gt; ok
 
 child_process(Fun, St) -&gt;
-    process_flag(trap_exit, true),
     group_leader(St#procstate.insulator, self()),
     try Fun() of
 	_ -&gt; ok
     catch
-	%% the only &quot;normal&quot; way for a child process to bail out is to
-	%% throw an {eunit_abort, Reason} exception; any other exception
-	%% will be reported as an unexpected termination of the test
+	%% the only &quot;normal&quot; way for a child process to bail out (e.g,
+	%% when not being able to parse the test descriptor) is to throw
+	%% an {eunit_abort, Reason} exception; any other exception will
+	%% be reported as an unexpected termination of the test
 	{eunit_abort, Cause} -&gt;
-	    abort_message(Cause, St),
+	    message_insulator({abort, Cause}, St),
 	    exit(aborted)
     end.
 
+-ifdef(TEST).
+child_test_() -&gt;
+    [{&quot;test processes do not trap exit signals&quot;,
+      ?_assertMatch(false, process_flag(trap_exit, false))}].
+-endif.
+
 %% @throws abortException()
-%% @type abortException() = {abort, Cause::term()}
+%% @type abortException() = {eunit_abort, Cause::term()}
 
 abort_task(Cause) -&gt;
     throw({eunit_abort, Cause}).
 
-%% Typically, the process that executes this code is trapping signals,
-%% but it might not be - it is outside of our control, since test code
-%% could turn off trapping. That is why the insulator process of a task
-%% must be guaranteed to always send a reply before it terminates.
+%% Typically, the process that executes this code is not trapping
+%% signals, but it might be - it is outside of our control, since test
+%% code can enable or disable trapping at will. That we cannot rely on
+%% process links here, is why the insulator process of a task must be
+%% guaranteed to always send a reply before it terminates.
 %%
 %% The unique reference guarantees that we don't extract any message
 %% from the mailbox unless it belongs to the test framework (and not to
 %% the running tests) - it is not possible to use selective receive to
-%% match only messages tagged with some pid in a dynamically varying set
-%% of pids. When the wait-loop terminates, no such message should remain
-%% in the mailbox.
+%% match only messages that are tagged with some pid out of a
+%% dynamically varying set of pids. When the wait-loop terminates, no
+%% such message should remain in the mailbox.
 
 wait_for_task(Pid, St) -&gt;
     wait_for_tasks(sets:from_list([Pid]), St).
@@ -391,10 +406,12 @@ wait_for_tasks(PidSet, St) -&gt;
 	    end
     end.
 
-
 %% ---------------------------------------------------------------------
 %% Separate testing process
 
+%% TODO: Ability to stop after N failures.
+%% TODO: Flow control, starting new job as soon as slot is available
+
 tests(T, St) -&gt;
     I = eunit_data:iter_init(T, St#procstate.id),
     case St#procstate.order of
@@ -416,7 +433,7 @@ tests_inorder(I, N, St) -&gt;
 	    handle_item(T, set_id(I1, St)),
 	    tests_inorder(I1, N+1, St);
 	none -&gt;
-	    N
+	    N    % the return status of a group is the subtest count
     end.
 
 tests_inparallel(I, K0, St) -&gt;
@@ -433,9 +450,12 @@ tests_inparallel(I, N, St, K, K0, Children) -&gt;
 			     sets:add_element(Child, Children));
 	none -&gt;
 	    wait_for_tasks(Children, St),
-	    N
+	    N    % the return status of a group is the subtest count
     end.
 
+%% this starts a new separate task for an inparallel-item (which might
+%% be a group and in that case might cause yet another spawn in the
+%% handle_group() function, but it might also be just a single test)
 spawn_item(T, St0) -&gt;
     Fun = fun (St) -&gt;
 		  fun () -&gt; handle_item(T, St) end
@@ -444,7 +464,10 @@ spawn_item(T, St0) -&gt;
     start_task(local, Fun, St0).
 
 get_next_item(I) -&gt;
-    eunit_data:iter_next(I, fun abort_task/1).
+    try eunit_data:iter_next(I)
+    catch
+	Term -&gt; abort_task(Term)
+    end.
 
 handle_item(T, St) -&gt;
     case T of
@@ -453,10 +476,29 @@ handle_item(T, St) -&gt;
     end.
 
 handle_test(T, St) -&gt;
-    progress_message('begin', test, St),
+    Data = [{desc, T#test.desc}, {source, T#test.location},
+	    {line, T#test.line}],
+    message_insulator({'begin', test, Data}, St),
+
+    %% each test case runs under a fresh group leader process
+    G0 = group_leader(),
+    Runner = self(),
+    G1 = new_group_leader(Runner),
+    group_leader(G1, self()),
+
+    %% run the actual test, handling timeouts and getting the total run
+    %% time of the test code (and nothing else)
     {Status, Time} = with_timeout(T#test.timeout, ?DEFAULT_TEST_TIMEOUT,
 				  fun () -&gt; run_test(T) end, St),
-    progress_message('end', {Status, Time}, St),
+
+    %% restore group leader, get the collected output, and re-emit it so
+    %% that it all seems to come from this process, and always comes
+    %% before the 'end' message for this test
+    group_leader(G0, self()),
+    Output = group_leader_sync(G1),
+    io:put_chars(Output),
+
+    message_insulator({'end', Status, Time}, St),
     ok.
 
 %% @spec (#test{}) -&gt; ok | {error, eunit_lib:exception()}
@@ -465,7 +507,7 @@ handle_test(T, St) -&gt;
 run_test(#test{f = F}) -&gt;
     try eunit_test:run_testfun(F) of
 	{ok, _Value} -&gt;
-	    %% just throw away the return value
+	    %% just discard the return value
 	    ok;
 	{error, Exception} -&gt;
 	    {error, Exception}
@@ -498,14 +540,19 @@ run_group(T, St) -&gt;
     %% note that the setup/cleanup is outside the group timeout; if the
     %% setup fails, we do not start any timers
     Timeout = T#group.timeout,
-    progress_message('begin', group, St),
-    F = fun (T) -&gt; enter_group(T, Timeout, St) end,
+    Data = [{desc, T#group.desc}, {spawn, T#group.spawn},
+	    {order, T#group.order}],
+    message_insulator({'begin', group, Data}, St),
+    F = fun (G) -&gt; enter_group(G, Timeout, St) end,
     try with_context(T, F) of
 	{Status, Time} -&gt;
-	    progress_message('end', {Status, Time}, St)
+	    message_insulator({'end', Status, Time}, St)
     catch
-	throw:Cause -&gt;
-	    cancel_message({abort, Cause}, St)
+	%% a throw here can come from eunit_data:enter_context/4 or from
+	%% get_next_item/1; for context errors, report group as aborted,
+	%% but continue processing tests
+	{context_error, Why, Trace} -&gt;
+	    message_insulator({skipped, {Why, Trace}}, St)
     end,
     ok.
 
@@ -518,7 +565,50 @@ with_context(#group{context = undefined, tests = T}, F) -&gt;
 with_context(#group{context = #context{} = C, tests = I}, F) -&gt;
     eunit_data:enter_context(C, I, F).
 
-%% Implementation of buffering I/O for the insulator process. (Note that
+%% Group leader process for test cases - collects I/O output requests.
+
+new_group_leader(Runner) -&gt;
+    %% We must use spawn/3 here (with explicit module and function
+    %% name), because the 'current function' status of the group leader
+    %% is used by the UNDER_EUNIT macro (in eunit.hrl). If we spawn
+    %% using a fun, the current function will be 'erlang:apply/2' during
+    %% early process startup, which will fool the macro.
+    spawn_link(?MODULE, group_leader_process, [Runner]).
+
+group_leader_process(Runner) -&gt;
+    group_leader_loop(Runner, infinity, []).
+
+group_leader_loop(Runner, Wait, Buf) -&gt;
+    receive
+	{io_request, From, ReplyAs, Req} -&gt;
+	    P = process_flag(priority, normal),
+	    %% run this part under normal priority always
+	    Buf1 = io_request(From, ReplyAs, Req, Buf),
+	    process_flag(priority, P),
+	    group_leader_loop(Runner, Wait, Buf1);
+	stop -&gt;
+	    %% quitting time: make a minimal pause, go low on priority,
+	    %% set receive-timeout to zero and schedule out again
+	    receive after 2 -&gt; ok end,
+	    process_flag(priority, low),
+	    group_leader_loop(Runner, 0, Buf);
+	_ -&gt;
+	    %% discard any other messages
+	    group_leader_loop(Runner, Wait, Buf)
+    after Wait -&gt;
+	    %% no more messages and nothing to wait for; we ought to
+	    %% have collected all immediately pending output now
+	    process_flag(priority, normal),
+	    Runner ! {self(), buffer_to_binary(Buf)}
+    end.
+
+group_leader_sync(G) -&gt;
+    G ! stop,
+    receive
+	{G, Buf} -&gt; Buf
+    end.
+
+%% Implementation of buffering I/O for group leader processes. (Note that
 %% each batch of characters is just pushed on the buffer, so it needs to
 %% be reversed when it is flushed.)
 
@@ -531,26 +621,13 @@ io_reply(From, ReplyAs, Reply) -&gt;
     From ! {io_reply, ReplyAs, Reply}.
 
 io_request({put_chars, Chars}, Buf) -&gt;
-    io_request({put_chars, latin1, Chars}, Buf);
-io_request({put_chars, latin1, Chars}, Buf) -&gt;
     {ok, [Chars | Buf]};
-io_request({put_chars, unicode, Chars}, Buf) -&gt;
-    {ok, [to_latin1(Chars) | Buf]};
-
 io_request({put_chars, M, F, As}, Buf) -&gt;
-    io_request({put_chars, latin1, M, F, As}, Buf);
-io_request({put_chars, latin1, M, F, As}, Buf) -&gt;
     try apply(M, F, As) of
 	Chars -&gt; {ok, [Chars | Buf]}
     catch
 	C:T -&gt; {{error, {C,T,erlang:get_stacktrace()}}, Buf}
     end;
-io_request({put_chars, unicode, M, F, As}, Buf) -&gt;
-    try apply(M, F, As) of
-	Chars -&gt; {ok, [to_latin1(Chars) | Buf]}
-    catch
-	C:T -&gt; {{error, {C,T,erlang:get_stacktrace()}}, Buf}
-    end;
 io_request({get_chars, _Prompt, _N}, Buf) -&gt;
     {eof, Buf};
 io_request({get_chars, _Prompt, _M, _F, _Xs}, Buf) -&gt;
@@ -559,18 +636,8 @@ io_request({get_line, _Prompt}, Buf) -&gt;
     {eof, Buf};
 io_request({get_until, _Prompt, _M, _F, _As}, Buf) -&gt;
     {eof, Buf};
-io_request({get_chars, _Enc, _Prompt, _N}, Buf) -&gt;
-    {eof, Buf};
-io_request({get_chars, _Enc, _Prompt, _M, _F, _Xs}, Buf) -&gt;
-    {eof, Buf};
-io_request({get_line, _Enc, _Prompt}, Buf) -&gt;
-    {eof, Buf};
-io_request({get_until, _Enc, _Prompt, _M, _F, _As}, Buf) -&gt;
-    {eof, Buf};
 io_request({setopts, _Opts}, Buf) -&gt;
     {ok, Buf};
-io_request(getopts, Buf) -&gt;
-    {[], Buf};
 io_request({requests, Reqs}, Buf) -&gt;
     io_requests(Reqs, {ok, Buf});
 io_request(_, Buf) -&gt;
@@ -580,17 +647,3 @@ io_requests([R | Rs], {ok, Buf}) -&gt;
     io_requests(Rs, io_request(R, Buf));
 io_requests(_, Result) -&gt;
     Result.
-
-to_latin1(Chars) -&gt;
-    case unicode:characters_to_binary(Chars,unicode,latin1) of
-	{error,_,_} -&gt; 
-	    list_to_binary( 
-	      [ case X of
-		    High when High &gt; 255 -&gt;
-			io_lib:format(&quot;\\{~.8B}&quot;,[X]);
-		    Low -&gt;
-			Low
-		end || X &lt;- unicode:characters_to_list(Chars,unicode) ]);
-	Bin -&gt;
-	    Bin
-    end.</diff>
      <filename>lib/eunit/src/eunit_proc.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,14 +13,20 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_serial.erl 332 2009-03-01 17:31:59Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
 %% @private
 %% @see eunit
-%% @doc Event serializing process which works as an adapter and
-%% multiplexer for &quot;supervisor&quot; processes
+%% @doc Event serializing and multiplexing process, to be used as the
+%% main &quot;supervisor&quot; process for en EUnit test runner. See eunit_proc
+%% for details about the events that will be sent to the listeners
+%% (provided to this process at startup). This process guarantees that
+%% listeners will receive events in order, even if tests execute in
+%% parallel. For every received 'begin' event, there will be exactly one
+%% 'end' or 'cancel' event. For a cancelling event with identifier Id,
+%% no further events will arrive whose identifiers have Id as prefix.
 
 -module(eunit_serial).
 
@@ -56,86 +62,106 @@
 		cancelled = eunit_lib:trie_new(),
 		messages = dict:new()}).
 
--spec start([pid()]) -&gt; pid().
 start(Pids) -&gt;
     spawn(fun () -&gt; serializer(Pids) end).
 
--spec serializer([pid()]) -&gt; no_return().
 serializer(Pids) -&gt;
     St = #state{listeners = sets:from_list(Pids),
 		cancelled = eunit_lib:trie_new(),
 		messages = dict:new()},
-    item([], none, none, St),
+    expect([], undefined, 0, St),
     exit(normal).
 
-item(Id, ParentId, N0, St0) -&gt;
-    case wait(Id, 'begin', ParentId, N0, St0) of
-	{none, St1} -&gt;
+%% collect beginning and end of an expected item; return {Done, NewSt}
+%% where Done is true if there are no more items of this group
+expect(Id, ParentId, GroupMinSize, St0) -&gt;
+    case wait(Id, 'begin', ParentId, GroupMinSize, St0) of
+	{done, St1} -&gt;
 	    {true, St1};
-	{{cancel, Done, undefined}, St1} -&gt;
-	    {Done, cast({status, Id, {cancel, undefined}}, St1)};
-	{{cancel, Done, Msg}, St1} -&gt;
-	    {Done, cast(Msg, St1)};
-	{{ok, Msg}, St1} -&gt;
+	{cancel, prefix, _Msg, St1} -&gt;
+	    %% if a parent caused the cancel, signal done with group and
+	    %% cast no cancel event (since the item might not exist)
+	    {true, St1};
+	{cancel, exact, Msg, St1} -&gt;
+	    cast_cancel(Id, Msg, St1),
+	    {false, St1};
+	{ok, Msg, St1} -&gt;
 	    %%?debugVal({got_begin, Id, Msg}),
 	    cast(Msg, St1),
 	    St2 = case Msg of
-		      {status, _, {progress, 'begin', group}} -&gt;
-			  items(Id, 0, St1);
-		      _ -&gt; St1
+		      {status, _, {progress, 'begin', {group, _Info}}} -&gt;
+			  group(Id, 0, St1);
+		      _ -&gt;
+			  St1
 		  end,
-	    case wait(Id, 'end', ParentId, N0, St2) of
-		{{cancel, Done, undefined}, St3} -&gt;
-		    {Done, cast({status, Id, {cancel, undefined}}, St3)};
-		{{cancel, Done, Msg1}, St3} -&gt;
-		    {Done, cast(Msg1, St3)};
-		{{ok, Msg1}, St3} -&gt;
+	    case wait(Id, 'end', ParentId, GroupMinSize, St2) of
+		{cancel, Why, Msg1, St3} -&gt;
+		    %% we know the item exists, so always cast a cancel
+		    %% event, and signal done with the group if a parent
+		    %% caused the cancel
+		    cast_cancel(Id, Msg1, St3),
+		    {(Why =:= prefix), St3};
+		{ok, Msg1, St3} -&gt;
 		    %%?debugVal({got_end, Id, Msg1}),
-		    {false, cast(Msg1, St3)}
+		    cast(Msg1, St3),
+		    {false, St3}
 	    end
     end.
 
-items(ParentId, N0, St) -&gt;
-    N = N0 + 1,
-    case item(ParentId ++ [N], ParentId, N0, St) of
+%% collect group items in order until group is done
+group(ParentId, GroupMinSize, St) -&gt;
+    N = GroupMinSize + 1,
+    case expect(ParentId ++ [N], ParentId, GroupMinSize, St) of
 	{false, St1} -&gt;
-	    items(ParentId, N, St1);
+	    group(ParentId, N, St1);
 	{true, St1} -&gt;
 	    St1
     end.
 
-cast(M, St) -&gt;
-    sets:fold(fun (L, M) -&gt; L ! M end, M, St#state.listeners),
-    St.
+cast_cancel(Id, undefined, St) -&gt;
+    %% reasonable message for implicitly cancelled events
+    cast({status, Id, {cancel, undefined}}, St);
+cast_cancel(_Id, Msg, St) -&gt;
+    cast(Msg, St).
+
+cast(Msg, St) -&gt;
+    sets:fold(fun (L, M) -&gt; L ! M end, Msg, St#state.listeners),
+    ok.
 
-wait(Id, Type, ParentId, N0, St) -&gt;
+%% wait for a particular begin or end event, that might have arrived or
+%% been cancelled already, or might become cancelled later, or might not
+%% even exist (for the last+1 element of a group)
+wait(Id, Type, ParentId, GroupMinSize, St) -&gt;
     %%?debugVal({wait, Id, Type}),
     case check_cancelled(Id, St) of
 	no -&gt;
 	    case recall(Id, St) of
 		undefined -&gt;
-		    wait_1(Id, Type, ParentId, N0, St);
+		    wait_1(Id, Type, ParentId, GroupMinSize, St);
 		Msg -&gt;
-		    {{ok, Msg}, forget(Id, St)}
+		    {ok, Msg, forget(Id, St)}
 	    end;
 	Why -&gt;
 	    %%?debugVal({cancelled, Why, Id, ParentId}),
-	    Done = (Why =:= prefix),
-	    {{cancel, Done, recall(Id, St)}, forget(Id, St)}
+	    {cancel, Why, recall(Id, St), forget(Id, St)}
     end.
 
-wait_1(Id, Type, ParentId, N0, St) -&gt;
+%% the event has not yet arrived or been cancelled - wait for more info
+wait_1(Id, Type, ParentId, GroupMinSize, St) -&gt;
     receive
 	{status, Id, {progress, Type, _}}=Msg -&gt;
 	    %%?debugVal({Type, ParentId, Id}),
-	    {{ok, Msg}, St};
-	{status,ParentId,{progress,'end',{N0,_,_}}}=Msg -&gt;
-	    %%?debugVal({end_group, ParentId, Id}),
-	    {none, remember(ParentId, Msg, St)};
+	    {ok, Msg, St};
+	{status, ParentId, {progress, 'end', {GroupMinSize, _}}}=Msg -&gt;
+	    %% the parent group ended (the final status of a group is
+	    %% the count of its subitems), and we have seen all of its
+	    %% subtests, so the currently expected event does not exist
+	    %%?debugVal({end_group, ParentId, Id, GroupMinSize}),
+	    {done, remember(ParentId, Msg, St)};
 	{status, SomeId, {cancel, _Cause}}=Msg -&gt;
-	    %%?debugVal({got_cancel, SomeId, ParentId, Id}),
+	    %%?debugVal({got_cancel, SomeId, _Cause}),
 	    St1 = set_cancelled(SomeId, Msg, St),
-	    wait(Id, Type, ParentId, N0, St1)
+	    wait(Id, Type, ParentId, GroupMinSize, St1)
     end.
 
 set_cancelled(Id, Msg, St0) -&gt;
@@ -143,6 +169,7 @@ set_cancelled(Id, Msg, St0) -&gt;
     St#state{cancelled = eunit_lib:trie_store(Id, St0#state.cancelled)}.
 
 check_cancelled(Id, St) -&gt;
+    %% returns 'no', 'exact', or 'prefix'
     eunit_lib:trie_match(Id, St#state.cancelled).
 
 remember(Id, Msg, St) -&gt;</diff>
      <filename>lib/eunit/src/eunit_serial.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$
+%% $Id: eunit_server.erl 267 2008-10-19 18:48:03Z rcarlsson $
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
@@ -216,8 +216,7 @@ server_command(From, Cmd, St) -&gt;
     server(St).
 
 server_command_reply(From, Result) -&gt;
-    From ! {self(), Result},
-    ok.
+    From ! {self(), Result}.
 
 enqueue(Job, From, Reference, St) -&gt;
     case dict:size(St#state.jobs) of
@@ -313,8 +312,7 @@ auto_test_done(St) -&gt;
     St#state{auto_test = Queue}.
 
 start_auto_test(Server, M) -&gt;
-    spawn(fun () -&gt; auto_super(Server, M) end),
-    ok.
+    spawn(fun () -&gt; auto_super(Server, M) end).
 
 auto_super(Server, M) -&gt;
     process_flag(trap_exit, true),</diff>
      <filename>lib/eunit/src/eunit_server.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_striptests.erl 329 2009-03-01 11:23:32Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @author Eric Merritt &lt;cyberlync@gmail.com&gt;
@@ -60,5 +60,8 @@ form({function, _L, Name, 0, _Cs}=Form, Acc, Exports, TestSuffix,
 	false -&gt;
 	    [Form | Acc]
     end;
+form({function, _L, ?DEFAULT_MODULE_WRAPPER_NAME, 1, _Cs}, Acc, _, _, _,
+     _) -&gt;
+    Acc;
 form(Form, Acc, _, _, _, _) -&gt;
     [Form | Acc].</diff>
      <filename>lib/eunit/src/eunit_striptests.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_test.erl 336 2009-03-06 14:43:21Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
 %% @copyright 2006 Richard Carlsson
@@ -24,7 +24,7 @@
 -module(eunit_test).
 
 -export([run_testfun/1, function_wrapper/2, enter_context/4,
-	 browse_context/2, multi_setup/1]).
+	 multi_setup/1]).
 
 
 -include(&quot;eunit.hrl&quot;).
@@ -43,6 +43,8 @@ get_stacktrace() -&gt;
 get_stacktrace(Ts) -&gt;
     eunit_lib:uniq(prune_trace(erlang:get_stacktrace(), Ts)).
 
+prune_trace([{eunit_data, _, _} | Rest], Tail) -&gt;
+    prune_trace(Rest, Tail);
 prune_trace([{?MODULE, _, _} | _Rest], Tail) -&gt;
     Tail;
 prune_trace([T | Ts], Tail) -&gt;
@@ -179,6 +181,8 @@ macro_test_() -&gt;
 		     = run_testfun(F)
  	     end)
      ]}.
+
+under_eunit_test() -&gt; ?assert(?UNDER_EUNIT).
 -endif.
 
 
@@ -276,24 +280,6 @@ enter_context(Setup, Cleanup, Instantiate, Callback) -&gt;
 context_error(Type, Class, Term) -&gt;
     throw({context_error, Type, {Class, Term, get_stacktrace()}}).
 
-%% Instantiates a context with dummy values to make browsing possible
-%% @throws {context_error, instantiation_failed, eunit_lib:exception()}
-
-browse_context(I, F) -&gt;
-    %% Browse: dummy setup/cleanup and a wrapper for the instantiator
-    I1 = fun (_) -&gt;
-		try eunit_lib:browse_fun(I) of
-		    {_, T} -&gt; T
-		catch
-		    Class:Term -&gt;
-			context_error(instantiation_failed, Class, Term)
-		end
-	 end,
-    enter_context(fun ok/0, fun ok/1, I1, F).
-
-ok() -&gt; ok.
-ok(_) -&gt; ok.
-
 %% This generates single setup/cleanup functions from a list of tuples
 %% on the form {Tag, Setup, Cleanup}, where the setup function always
 %% backs out correctly from partial completion.
@@ -330,3 +316,5 @@ multi_setup([{Tag, S} | Es], CleanupPrev) -&gt;
     multi_setup([{Tag, S, fun ok/1} | Es], CleanupPrev);
 multi_setup([], CleanupAll) -&gt;
     {fun (Rs) -&gt; Rs end, CleanupAll}.
+
+ok(_) -&gt; ok.</diff>
      <filename>lib/eunit/src/eunit_test.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,7 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_tests.erl 238 2007-11-15 10:23:54Z mremond $ 
 %%
 %% @author Richard Carlsson &lt;richard@it.uu.se&gt;
 %% @copyright 2007 Richard Carlsson</diff>
      <filename>lib/eunit/src/eunit_tests.erl</filename>
    </modified>
    <modified>
      <diff>@@ -13,194 +13,167 @@
 %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 %% USA
 %%
-%% $Id$ 
+%% $Id: eunit_tty.erl 330 2009-03-01 16:28:02Z rcarlsson $ 
 %%
 %% @author Richard Carlsson &lt;richardc@it.uu.se&gt;
-%% @copyright 2006 Richard Carlsson
+%% @copyright 2006-2009 Richard Carlsson
 %% @private
 %% @see eunit
 %% @doc Text-based frontend for EUnit
 
 -module(eunit_tty).
 
+-behaviour(eunit_listener).
+
+-define(NODEBUG, true).
 -include(&quot;eunit.hrl&quot;).
 -include(&quot;eunit_internal.hrl&quot;).
 
--export([start/1, start/2]).
+-export([start/0, start/1]).
 
+-export([init/1, handle_begin/3, handle_end/3, handle_cancel/3,
+	 terminate/2]).
 
 -record(state, {verbose = false,
-		succeed = 0,
-		fail = 0,
-		abort = 0,
-		skip = 0,
-		indent = 0}).
+		indent = 0
+	       }).
 
-start(List) -&gt;
-    start(List, []).
+start() -&gt;
+    start([]).
 
-start(List, Options) -&gt;
-    St = #state{verbose = proplists:get_bool(verbose, Options)},
-    Id = [],
-    spawn(fun () -&gt; init(Id, List, St) end).
+start(Options) -&gt;
+    eunit_listener:start(?MODULE, Options).
 
-init(Id, List, St0) -&gt;
+init(Options) -&gt;
+    St = #state{verbose = proplists:get_bool(verbose, Options)},
     receive
-	{start, Reference} -&gt;
-	    if St0#state.verbose -&gt; print_header();
+	{start, _Reference} -&gt;
+	    if St#state.verbose -&gt; print_header();
 	       true -&gt; ok
 	    end,
-	    St = group_begin(Id, &quot;&quot;, List, St0),
-	    receive
-		{stop, Reference, ReplyTo} -&gt;
-		    Result = if St#state.fail =:= 0, St#state.abort =:= 0,
-				St#state.skip =:= 0 -&gt;
-				     ok;
-				true -&gt;
-				     error
-			     end,
-		    report(Result, St),
-		    ReplyTo ! {result, Reference, Result},
-		    ok
-	    end
+	    St
     end.
 
-report(ok, St) -&gt;
-    if St#state.succeed =:= 0 -&gt;
-	    io:fwrite(&quot;  There were no tests to run.\n&quot;);
+terminate({ok, Data}, St) -&gt;
+    Pass = proplists:get_value(pass, Data, 0),
+    Fail = proplists:get_value(fail, Data, 0),
+    Skip = proplists:get_value(skip, Data, 0),
+    Cancel = proplists:get_value(cancel, Data, 0),
+    if Fail =:= 0, Skip =:= 0, Cancel =:= 0 -&gt;
+	    if Pass =:= 0 -&gt;
+		    io:fwrite(&quot;  There were no tests to run.\n&quot;);
+	       true -&gt;
+		    if St#state.verbose -&gt; print_bar();
+		       true -&gt; ok
+		    end,
+		    if Pass =:= 1 -&gt;
+			    io:fwrite(&quot;  Test passed.\n&quot;);
+		       true -&gt;
+			    io:fwrite(&quot;  All ~w tests passed.\n&quot;, [Pass])
+		    end
+	    end,
+	    sync_end(ok);
        true -&gt;
-	    if St#state.verbose -&gt; print_bar();
+	    print_bar(),
+	    io:fwrite(&quot;  Failed: ~w.  Skipped: ~w.  Passed: ~w.\n&quot;,
+		      [Fail, Skip, Pass]),
+	    if Cancel =/= 0 -&gt;
+		    io:fwrite(&quot;One or more tests were cancelled.\n&quot;);
 	       true -&gt; ok
 	    end,
-	    if St#state.succeed =:= 1 -&gt;
-		    io:fwrite(&quot;  Test successful.\n&quot;);
-	       true -&gt;
-		    io:fwrite(&quot;  All ~w tests successful.\n&quot;,
-			      [St#state.succeed])
-	    end
+	    sync_end(error)
     end;
-report(error, St) -&gt;
-    print_bar(),
-    io:fwrite(&quot;  Failed: ~w.  Aborted: ~w.&quot;
-	      &quot;  Skipped: ~w.  Succeeded: ~w.\n&quot;,
-	      [St#state.fail, St#state.abort,
-	       St#state.skip, St#state.succeed]).
+terminate({error, Reason}, _St) -&gt;
+    io:fwrite(&quot;Internal error: ~P.\n&quot;, [Reason, 25]),
+    sync_end(error).
 
-print_header() -&gt;
-    io:fwrite(&quot;======================== EUnit &quot;
-	      &quot;========================\n&quot;).
-
-print_bar() -&gt;
-    io:fwrite(&quot;============================&quot;
-	      &quot;===========================\n&quot;).    
-
-wait(Id, St) -&gt;
+sync_end(Result) -&gt;
     receive
-	{status, Id, Data} -&gt; {Data, St}
+	{stop, Reference, ReplyTo} -&gt;
+	    ReplyTo ! {result, Reference, Result},
+	    ok
     end.
 
-entry({item, Id, Desc, Test}, St) -&gt;
-    test_begin(Id, Desc, Test, St);
-entry({group, Id, Desc, Es}, St) -&gt;
-    group_begin(Id, Desc, Es, St).
+print_header() -&gt;
+    io:fwrite(&quot;======================== EUnit ========================\n&quot;).
 
-tests([E | Es], St) -&gt;
-    tests(Es, entry(E, St));
-tests([], St) -&gt;
-    St.
+print_bar() -&gt;
+    io:fwrite(&quot;=======================================================\n&quot;).
 
-test_begin(Id, Desc, {Module, Name}, St) -&gt;
-    test_begin(Id, Desc, {Module, Name, 0}, St);
-test_begin(Id, Desc, {Module, Name, Line}, St) -&gt;
-    Text = format_test_begin(Module, Name, Line, Desc),
-    if St#state.verbose -&gt; print_test_begin(St#state.indent, Text);
+
+handle_begin(group, Data, St) -&gt;
+    ?debugFmt(&quot;handle_begin group ~w&quot;, [Data]),
+    Desc = proplists:get_value(desc, Data),
+    if Desc =/= &quot;&quot;, Desc =/= undefined, St#state.verbose -&gt;
+	    I = St#state.indent,
+	    print_group_start(I, Desc),
+	    St#state{indent = I + 1};
+       true -&gt;
+	    St
+    end;
+handle_begin(test, Data, St) -&gt;
+    ?debugFmt(&quot;handle_begin test ~w&quot;, [Data]),
+    if St#state.verbose -&gt; print_test_begin(St#state.indent, Data);
        true -&gt; ok
     end,
-    case wait(Id, St) of
-	{{progress, 'begin', test}, St1} -&gt;
-	    test_end(Id, Text, St1);
-	{{cancel, Reason}, St1} -&gt;
-	    if St#state.verbose -&gt; print_test_cancel(Reason);
-	       Reason /= undefined -&gt;
-		    print_test_begin(St#state.indent, Text),
-		    print_test_cancel(Reason);
+    St.
+
+handle_end(group, Data, St) -&gt;
+    ?debugFmt(&quot;handle_end group ~w&quot;, [Data]),
+    Desc = proplists:get_value(desc, Data),
+    if Desc =/= &quot;&quot;, Desc =/= undefined, St#state.verbose -&gt;
+	    Time = proplists:get_value(time, Data),
+	    I = St#state.indent,
+	    print_group_end(I, Time),
+	    St#state{indent = I - 1};
+       true -&gt;
+	    St
+    end;
+handle_end(test, Data, St) -&gt;
+    ?debugFmt(&quot;handle_end test ~w&quot;, [Data]),
+    case proplists:get_value(status, Data) of
+	ok -&gt;
+	    if St#state.verbose -&gt; print_test_end(Data);
 	       true -&gt; ok
 	    end,
-	    St1#state{skip = St1#state.skip + 1}
-    end.
-
-test_end(Id, Text, St) -&gt;
-    case wait(Id, St) of
-	{{progress, 'end', {Result, Time, _Output}}, St1} -&gt;
-	    if Result =:= ok -&gt;
-		    if St#state.verbose -&gt; print_test_end(Time);
-		       true -&gt; ok
-		    end,
-		    St1#state{succeed = St1#state.succeed + 1};
-	       true -&gt;
-		    if St#state.verbose -&gt; ok;
-		       true -&gt; print_test_begin(St#state.indent, Text)
-		    end,
-		    print_test_error(Result),
-		    St1#state{fail = St1#state.fail + 1}
-	    end;
-	{{cancel, Reason}, St1} -&gt;
+	    St;
+	Status -&gt;
 	    if St#state.verbose -&gt; ok;
-	       true -&gt; print_test_begin(St#state.indent, Text)
+	       true -&gt; print_test_begin(St#state.indent, Data)
 	    end,
-	    print_test_cancel(Reason),
-	    St1#state{abort = St1#state.abort + 1}
+	    print_test_error(Status, Data),
+	    St
     end.
 
-group_begin(Id, Desc, Es, St0) -&gt;
-    I = St0#state.indent,
-    St = if Desc /= &quot;&quot;, St0#state.verbose -&gt;
-		 print_group_start(I, Desc),
-		 St0#state{indent = I + 1};
-	    true -&gt;
-		 St0
-	 end,
-    case wait(Id, St) of
-	{{progress, 'begin', group}, St1} -&gt;
-	    group_end(Id, I, Desc, tests(Es, St1));
-	{{cancel, Reason}, St1} -&gt;
-	    if Desc /= &quot;&quot;, St1#state.verbose -&gt;
-		    print_group_cancel(I, Reason);
-	       Desc /= &quot;&quot; -&gt;
-		    print_group_start(I, Desc),
+handle_cancel(group, Data, St) -&gt;
+    ?debugFmt(&quot;handle_cancel group ~w&quot;, [Data]),
+    I = St#state.indent,
+    case proplists:get_value(reason, Data) of
+	undefined -&gt;
+	    %% &quot;skipped&quot; message is not interesting here
+	    St#state{indent = I - 1};
+	Reason -&gt;
+	    Desc = proplists:get_value(desc, Data),
+	    if Desc =/= &quot;&quot;, Desc =/= undefined, St#state.verbose -&gt;
 		    print_group_cancel(I, Reason);
 	       true -&gt;
-		    ok
+		    print_group_start(I, Desc),
+		    print_group_cancel(I, Reason)
 	    end,
-	    %% TODO: eliminate this size calculation if possible
-	    Size = eunit_data:list_size(Es),
-	    St1#state{indent = I, skip = St1#state.skip + Size}
-    end.
+	    St#state{indent = I - 1}
+    end;
+handle_cancel(test, Data, St) -&gt;
+    ?debugFmt(&quot;handle_cancel test ~w&quot;, [Data]),
+    if St#state.verbose -&gt; ok;
+       true -&gt; print_test_begin(St#state.indent, Data)
+    end,
+    print_test_cancel(proplists:get_value(reason, Data)),
+    St.
 
-group_end(Id, I, Desc, St) -&gt;
-    (case wait(Id, St) of
-	 {{progress, 'end', {_Count, Time, _Output}}, St1} -&gt;
-	     if Desc /= &quot;&quot;, St#state.verbose -&gt;
-		     print_group_end(St1#state.indent, Time);
-		true -&gt;
-		     ok
-	     end,
-	     St1;
-	 {{cancel, undefined}, St1} -&gt;
-	     St1;  %% &quot;skipped&quot; message is not interesting here
-	 {{cancel, Reason}, St1} -&gt;
-	     if Desc /= &quot;&quot;, St1#state.verbose -&gt;
-		     print_group_cancel(I, Reason);
-		true -&gt;
-		     print_group_start(I, Desc),
-		     print_group_cancel(I, Reason)
-	     end,
-	     St1
-     end)#state{indent = I}.
 
 indent(N) when is_integer(N), N &gt;= 1 -&gt;
     io:put_chars(lists:duplicate(N * 2, $\s));
-indent(_) -&gt;
+indent(_N) -&gt;
     ok.
 
 print_group_start(I, Desc) -&gt;
@@ -215,31 +188,44 @@ print_group_end(I, Time) -&gt;
 	    ok
     end.
 
-format_test_begin(Module, Name, Line, Desc) -&gt;
+print_test_begin(I, Data) -&gt;
+    Desc = proplists:get_value(desc, Data),
+    Line = proplists:get_value(line, Data, 0),
+    indent(I),
     L = if Line =:= 0 -&gt; &quot;&quot;;
 	   true -&gt; io_lib:fwrite(&quot;~w:&quot;, [Line])
 	end,
-    D = if Desc =:= &quot;&quot; -&gt; &quot;&quot;;
+    D = if Desc =:= &quot;&quot; ; Desc =:= undefined -&gt; &quot;&quot;;
 	   true -&gt; io_lib:fwrite(&quot; (~s)&quot;, [Desc])
 	end,
-    io_lib:fwrite(&quot;~s:~s~s~s...&quot;, [Module, L, Name, D]).
-
-print_test_begin(I, Text) -&gt;
-    indent(I),
-    io:put_chars(Text).
+    case proplists:get_value(source, Data) of
+	{Module, Name, _Arity} -&gt;
+	    io:fwrite(&quot;~s:~s ~s~s...&quot;, [Module, L, Name, D]);
+	_ -&gt;
+	    io:fwrite(&quot;~s~s...&quot;, [L, D])
+    end.
 
-print_test_end(Time) -&gt;
+print_test_end(Data) -&gt;
+    Time = proplists:get_value(time, Data, 0),
     T = if Time &gt; 0 -&gt; io_lib:fwrite(&quot;[~.3f s] &quot;, [Time/1000]);
 	   true -&gt; &quot;&quot;
 	end,
     io:fwrite(&quot;~sok\n&quot;, [T]).
 
-print_test_error({error, Exception}) -&gt;
-    io:fwrite(&quot;*failed*\n::~s\n\n&quot;,
-	      [eunit_lib:format_exception(Exception)]);
-print_test_error({skipped, Reason}) -&gt;
-    io:fwrite(&quot;*did not run*\n::~s\n\n&quot;,
-	      [format_skipped(Reason)]).
+print_test_error({error, Exception}, Data) -&gt;
+    Output = proplists:get_value(output, Data),
+    io:fwrite(&quot;*failed*\n::~s&quot;,
+	      [eunit_lib:format_exception(Exception)]),
+    case Output of
+	&lt;&lt;&gt;&gt; -&gt;
+	    io:put_chars(&quot;\n\n&quot;);
+	&lt;&lt;Text:800/binary, _:1/binary, _/binary&gt;&gt; -&gt;
+	    io:fwrite(&quot;  output:&lt;&lt;\&quot;~s\&quot;&gt;&gt;...\n\n&quot;, [Text]);
+	_ -&gt;
+	    io:fwrite(&quot;  output:&lt;&lt;\&quot;~s\&quot;&gt;&gt;\n\n&quot;, [Output])
+    end;
+print_test_error({skipped, Reason}, _) -&gt;
+    io:fwrite(&quot;*did not run*\n::~s\n&quot;, [format_skipped(Reason)]).
 
 format_skipped({module_not_found, M}) -&gt;
     io_lib:format(&quot;missing module: ~w&quot;, [M]);
@@ -269,4 +255,3 @@ format_cancel({exit, Reason}) -&gt;
 		  [Reason, 15]);
 format_cancel({abort, Reason}) -&gt;
     eunit_lib:format_error(Reason).
-</diff>
      <filename>lib/eunit/src/eunit_tty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-EUNIT_VSN = 2.0.1
+EUNIT_VSN = 2.1</diff>
      <filename>lib/eunit/vsn.mk</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/bonk.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/bonk_sound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/bonk_square.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/cols.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/highscore.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/mandel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/othello.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/othello_adt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/othello_board.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/contribs/ebin/sounder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/ball.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/browser.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/calc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/calc2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/color_demo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/color_demo2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/distrib_draw.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/entry_demo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/event_test.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/file_dialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/focus_demo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/frac.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gs_frontend.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gs_make.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gs_packer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gs_widgets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_arc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_button.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_canvas.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_checkbutton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_editor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_entry.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_font.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_frame.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_generic.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_grid.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_gridline.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_gs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_image.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_label.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_line.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_listbox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_menu.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_menubar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_menubutton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_menuitem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_oval.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_polygon.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_port_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_radiobutton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_rectangle.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_scale.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_text.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_widgets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/gstk_window.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/line_demo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/man.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/menu_demo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/rubber.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/tcl2erl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/tool_file_dialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/gs/ebin/tool_utils.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-% Don't edit this file. It was generated by gs_make:start/0 at 2009-4-15, 20:56:14.
+% Don't edit this file. It was generated by gs_make:start/0 at 2009-4-20, 20:46:7.
 
 out_opts([Option|Options],Gstkid,TkW,DB,ExtraArg,S,P,C) -&gt;
   {Opt,Val} =</diff>
      <filename>lib/gs/src/gstk_generic.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,22 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to HiPE.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Hipe 3.7.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Minor updates and bug fixes.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7958&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
+
 &lt;section&gt;&lt;title&gt;Hipe 3.7&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/hipe/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff>@@ -1396,7 +1396,7 @@ o1_opts() -&gt;
   end.
 
 o2_opts() -&gt;
-  Common = [icode_ssa_const_prop, icode_ssa_copy_prop, icode_ssa_struct_reuse,
+  Common = [icode_ssa_const_prop, icode_ssa_copy_prop, % icode_ssa_struct_reuse,
 	    icode_type, icode_inline_bifs, rtl_lcm,
 	    rtl_ssa, rtl_ssa_const_prop,
 	    spillmin_color, use_indexing, remove_comments, </diff>
      <filename>lib/hipe/main/hipe.erl</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-HIPE_VSN = 3.7
+HIPE_VSN = 3.7.1</diff>
      <filename>lib/hipe/vsn.mk</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_array_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_attribute_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_cbe.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_cclient.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_code.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_codegen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_constant_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_cserver.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_enum_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_erl_template.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_erlbe.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_error.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_fetch.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_forms.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_genobj.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_java_type.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_jbe.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_noc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_options.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_plainbe.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_pp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_pragma.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_sequence_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_struct_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_symtab.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_union_java.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ic_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/icenum.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/iceval.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/icparse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/icpreproc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/icscan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/icstruct.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ictk.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/ictype.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/ebin/icunion.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: m
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/ic/examples/pre_post_condition/m.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/examples/pre_post_condition/m_NotAnInteger.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: m_NotAnInteger
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/ic/examples/pre_post_condition/m_NotAnInteger.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/examples/pre_post_condition/m_i.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: m_i
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/ic/examples/pre_post_condition/m_i.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: m_i
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/ic/examples/pre_post_condition/m_i.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/examples/pre_post_condition/m_i_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/examples/pre_post_condition/oe_ex.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_ex
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/ic/examples/pre_post_condition/oe_ex.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_ex
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/examples/pre_post_condition/ex.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/ic/examples/pre_post_condition/oe_ex.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ic/examples/pre_post_condition/tracer.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 -module(icparse).
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/src/icyeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/src/icyeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/ic/src/icparse.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/ftp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/ftp_progress.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/ftp_response.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/ftp_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_chunk.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_cookie.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_request.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_response.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_transport.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_uri.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/http_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_handler_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_manager.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_profile_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_request.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_response.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpc_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_acceptor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_acceptor_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_cgi.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_conf.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_esi.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_example.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_instance_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_log.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_manager.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_misc_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_request.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_request_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_response.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_script_env.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_socket.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/httpd_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/inets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/inets_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/inets_service.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/inets_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_actions.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_alias.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_auth.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_auth_dets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_auth_mnesia.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_auth_plain.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_auth_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_browser.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_cgi.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_dir.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_disk_log.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_esi.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_get.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_head.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_htaccess.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_include.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_log.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_range.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_responsecontrol.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_security.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_security_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/mod_trace.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp_binary.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp_engine.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp_logger.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inets/ebin/tftp_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inviso/ebin/inviso.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inviso/ebin/inviso_c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inviso/ebin/inviso_lfm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inviso/ebin/inviso_lfm_tpfreader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inviso/ebin/inviso_tool.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/inviso/ebin/inviso_tool_lib.beam</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,39 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the Jinterface application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Jinterface 1.5.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Many Erlang classes, e.g. OtpErlangRef, was missing an
+	    implementation of the hashCode() method, making it futile
+	    to put them in hash structures such as HashMap. Bug and
+	    patch provided by Paul Guyot. We extended the patch to
+	    all classes and improved (?) on the hash algorithm.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7899&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    jinterface uses the new environment variable
+	    ERL_EPMD_PORT the same way that erl, epmd and
+	    erl_interface do since R13A.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7885&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Jinterface 1.5&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/jinterface/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,71 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the Kernel application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Kernel 2.13.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Many concurrent calls to &lt;c&gt;os:cmd/1&lt;/c&gt; will only block
+	    one scheduler thread at a time, making an smp emulator
+	    more responsive if the OS is slow forking processes.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7890 Aux Id: seq11219 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Fixed hanging early RPC that did IO operation during node
+	    start.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7903 Aux Id: seq11224 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    The error behavior of gen_tcp and gen_udp has been
+	    corrected. gen_tcp:connect/3,4 and gen_udp:send/4 now
+	    returns {error,eafnosupport} for conflicting destination
+	    address versus socket address family. Other corner cases
+	    for IP address string host names combined with not using
+	    the native (OS) resolver (which is not default) has also
+	    been changed to return {error,nxdomain} instead of
+	    {error,einval}. Those changes just may surprise old
+	    existing code. gen_tcp:listen/2 and gen_udp:open/2 now
+	    fails for conflicting local address versus socket address
+	    family instead of trying to use an erroneous address.
+	    Problem reported by Per Hedeland.&lt;/p&gt;
+          &lt;p&gt;
+	    *** POTENTIAL INCOMPATIBILITY ***&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7929&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Several glitches and performance issues in the Unicode
+	    and I/O-system implementation of R13A have been
+	    corrected.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7896 Aux Id: OTP-7648 OTP-7887 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    The unsupported DNS resolver client inet_res has now been
+	    improved to handle NAPTR queries.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7925 Aux Id: seq11231 &lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
+
 &lt;section&gt;&lt;title&gt;Kernel 2.13&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;</diff>
      <filename>lib/kernel/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/application.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/application_controller.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/application_master.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/application_starter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/auth.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/code.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/code_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/disk_log.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/disk_log_1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/disk_log_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/disk_log_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/dist_ac.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/dist_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/erl_boot_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/erl_ddll.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/erl_distribution.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/erl_epmd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/erl_reply.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/error_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/error_logger.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/erts_debug.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/file_io_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/file_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/gen_sctp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/gen_tcp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/gen_udp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/global.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/global_group.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/global_search.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/group.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/heart.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/hipe_unified_loader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet6_sctp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet6_tcp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet6_tcp_dist.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet6_udp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_dns.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_gethost_native.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_hosts.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_parse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_res.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_sctp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_tcp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_tcp_dist.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/inet_udp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/kernel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/kernel_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/net.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/net_adm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/net_kernel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/os.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/packages.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/pg2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/ram_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/rpc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/seq_trace.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/standard_error.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/user.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/user_drv.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/user_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/kernel/ebin/wrap_log_reader.beam</filename>
    </modified>
    <modified>
      <diff>@@ -131,7 +131,8 @@ version_check(Version, Mod) when is_atom(Mod) -&gt;
   Ver = ?VERSION_STRING(),
   case Version &lt; Ver of
     true -&gt; 
-      ?msg(&quot;WARNING: Module (~w) has version ~s\n&quot;, [Mod, Version]);
+      ?msg(&quot;WARNING: Module ~w was compiled with HiPE version ~s\n&quot;,
+	   [Mod, Version]);
     _ -&gt; ok
   end.
 </diff>
      <filename>lib/kernel/src/hipe_unified_loader.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_drv_media_gateway_control_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_drv_media_gateway_control_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_drv_media_gateway_control_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_drv_media_gateway_control_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_drv_media_gateway_control_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_drv_media_gateway_control_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_media_gateway_control_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_media_gateway_control_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_media_gateway_control_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_media_gateway_control_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_media_gateway_control_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_bin_media_gateway_control_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_media_gateway_control_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_media_gateway_control_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_media_gateway_control_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_media_gateway_control_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_media_gateway_control_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_ber_media_gateway_control_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_encoder_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_name_resolver_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_name_resolver_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_name_resolver_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_name_resolver_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_name_resolver_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_name_resolver_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_term_id.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_term_id_gen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_transformer_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_transformer_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_transformer_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_transformer_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_transformer_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_binary_transformer_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_compact_text_encoder_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_digit_map.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_edist_compress.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_erl_dist_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_erl_dist_encoder_mc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_filter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_flex_scanner.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_flex_scanner_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_messenger.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_messenger_misc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_misc_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_monitor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_drv_media_gateway_control_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_drv_media_gateway_control_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_drv_media_gateway_control_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_drv_media_gateway_control_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_drv_media_gateway_control_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_drv_media_gateway_control_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_media_gateway_control_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_media_gateway_control_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_media_gateway_control_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_media_gateway_control_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_media_gateway_control_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_bin_media_gateway_control_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_media_gateway_control_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_media_gateway_control_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_media_gateway_control_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_media_gateway_control_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_media_gateway_control_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_per_media_gateway_control_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_pretty_text_encoder_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_sdp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_stats.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_tcp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_tcp_accept.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_tcp_accept_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_tcp_connection.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_tcp_connection_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_tcp_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_mini_decoder.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_mini_parser.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_parser_prev3a.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_parser_prev3b.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_parser_prev3c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_parser_v1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_parser_v2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_parser_v3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_text_scanner.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_timer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_trans_sender.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_trans_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_transport.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_udp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_udp_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_udp_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/ebin/megaco_user_default.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/meas/megaco_codec_meas.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/meas/megaco_codec_mstone1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/meas/megaco_codec_mstone2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/meas/megaco_codec_mstone_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/meas/megaco_codec_transform.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/simple/megaco_simple_mg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/megaco/examples/simple/megaco_simple_mgc.beam</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_drv_media_gateway_control_prev3a'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_drv_media_gateway_control_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_drv_media_gateway_control_prev3b'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_drv_media_gateway_control_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_drv_media_gateway_control_prev3c'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_drv_media_gateway_control_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_drv_media_gateway_control_v1'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_drv_media_gateway_control_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_drv_media_gateway_control_v2'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_drv_media_gateway_control_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_drv_media_gateway_control_v3'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},driver,optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_drv_media_gateway_control_v3.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_media_gateway_control_prev3a'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_media_gateway_control_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_media_gateway_control_prev3b'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_media_gateway_control_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_media_gateway_control_prev3c'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_media_gateway_control_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_media_gateway_control_v1'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_media_gateway_control_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_media_gateway_control_v2'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_media_gateway_control_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin_v2).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_bin_media_gateway_control_v3'},
-            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber_bin_v2,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,asn1config,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_bin_media_gateway_control_v3.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_media_gateway_control_prev3a'},
-            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_media_gateway_control_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_media_gateway_control_prev3b'},
-            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_media_gateway_control_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_media_gateway_control_prev3c'},
-            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_media_gateway_control_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_media_gateway_control_v1'},
-            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_media_gateway_control_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_media_gateway_control_v2'},
-            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_media_gateway_control_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_BER',asn1rt_ber_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_ber_media_gateway_control_v3'},
-            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[ber,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_ber_media_gateway_control_v3.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin_rt2ct).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_drv_media_gateway_control_prev3a'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_drv_media_gateway_control_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin_rt2ct).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_drv_media_gateway_control_prev3b'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_drv_media_gateway_control_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin_rt2ct).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_drv_media_gateway_control_prev3c'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_drv_media_gateway_control_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin_rt2ct).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_drv_media_gateway_control_v1'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_drv_media_gateway_control_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin_rt2ct).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_drv_media_gateway_control_v2'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_drv_media_gateway_control_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin_rt2ct).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_drv_media_gateway_control_v3'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},optimize,noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_drv_media_gateway_control_v3.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_media_gateway_control_prev3a'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_media_gateway_control_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_media_gateway_control_prev3b'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_media_gateway_control_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_media_gateway_control_prev3c'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_media_gateway_control_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_media_gateway_control_v1'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_media_gateway_control_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_media_gateway_control_v2'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_media_gateway_control_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_bin_media_gateway_control_v3'},
-            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per_bin,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_bin_media_gateway_control_v3.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_media_gateway_control_prev3a'},
-            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_media_gateway_control_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_media_gateway_control_prev3b'},
-            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_media_gateway_control_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_media_gateway_control_prev3c'},
-            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_media_gateway_control_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_media_gateway_control_v1'},
-            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_media_gateway_control_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_media_gateway_control_v2'},
-            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_media_gateway_control_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -6,7 +6,7 @@
 -define('RT_PER',asn1rt_per_bin).
 -asn1_info([{vsn,'1.6.10'},
             {module,'megaco_per_media_gateway_control_v3'},
-            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,49,53,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
+            {options,[per,report_errors,{cwd,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},{outdir,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]},noobj,{i,[46]},{i,[47,110,101,116,47,115,104,101,108,111,98,47,108,100,105,115,107,47,100,97,105,108,121,95,98,117,105,108,100,47,111,116,112,95,112,114,101,98,117,105,108,100,95,114,49,51,98,46,50,48,48,57,45,48,52,45,50,48,95,50,48,47,111,116,112,95,115,114,99,95,82,49,51,66,47,108,105,98,47,109,101,103,97,99,111,47,115,114,99,47,98,105,110,97,114,121]}]}]).
 
 -export([encoding_rule/0]).
 -export([</diff>
      <filename>lib/megaco/src/binary/megaco_per_media_gateway_control_v3.erl</filename>
    </modified>
    <modified>
      <diff>@@ -9,7 +9,7 @@
 -include(&quot;megaco_text_mini_parser.hrl&quot;).
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_mini_parser.erl</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@
 
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_parser_prev3a.erl</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@
 
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_parser_prev3b.erl</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@
 
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_parser_prev3c.erl</filename>
    </modified>
    <modified>
      <diff>@@ -20,7 +20,7 @@
 %%    ok.
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_parser_v1.erl</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@
 
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_parser_v2.erl</filename>
    </modified>
    <modified>
      <diff>@@ -10,7 +10,7 @@
 
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/megaco/src/text/megaco_text_parser_v3.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_backup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_bup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_checkpoint.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_checkpoint_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_controller.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_dumper.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_event.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_frag.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_frag_hash.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_frag_old_hash.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_index.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_kernel_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_late_loader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_loader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_locker.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_log.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_monitor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_recover.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_registry.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_schema.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_snmp_hook.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_snmp_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_sp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_subscr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_text.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/mnesia/ebin/mnesia_tm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/crashdump_viewer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/crashdump_viewer_html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/etop.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/etop_gui.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/etop_tr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/etop_txt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/ttb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/observer/ebin/ttb_et.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/odbc/ebin/odbc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/odbc/ebin/odbc_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/odbc/ebin/odbc_sup.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNaming
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_Binding
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_Binding.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_BindingIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_BindingIterator.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNaming_BindingIterator
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_BindingIterator.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_BindingList
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_BindingList.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_Name
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_Name.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NameComponent
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NameComponent.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContext
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNaming_NamingContext
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CosNaming_NamingContextExt
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt_AlreadyBound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt_AlreadyBound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt_CannotProceed
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt_CannotProceed.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt_InvalidAddress
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt_InvalidAddress.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt_InvalidName
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt_InvalidName.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt_NotEmpty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt_NotEmpty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContextExt_NotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContextExt_NotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContext_AlreadyBound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext_AlreadyBound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContext_CannotProceed
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext_CannotProceed.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContext_InvalidName
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext_InvalidName.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContext_NotEmpty
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext_NotEmpty.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: CosNaming_NamingContext_NotFound
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/CosNaming_NamingContext_NotFound.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_cos_naming
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/oe_cos_naming.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_cos_naming
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/oe_cos_naming.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_cos_naming_ext
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.
@@ -157,6 +157,6 @@ oe_destroy(OE_IFR,IFR_ID) -&gt;
 %% Idl file dependency list function
 oe_dependency() -&gt;
 
-    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl&quot;,
+    {&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl&quot;,
      [&quot;cos_naming.idl&quot;]}.
 </diff>
      <filename>lib/orber/COSS/CosNaming/oe_cos_naming_ext.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_cos_naming_ext
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/COSS/CosNaming/cos_naming_ext.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/COSS/CosNaming/oe_cos_naming_ext.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;CosNaming_NamingContext&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/CosNaming_NamingContext.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1999&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1999&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;The Orber Application&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_contents.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2001&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2001&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;Debugging&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_debugging.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2001&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2001&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;CORBA System and User Defined Exceptions&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_exceptions.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;OMG IDL to Erlang Mapping&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_idl_to_erlang_mapping.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
    &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2001&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2001&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;Orber Interceptors&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_interceptors.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;CosNaming Service&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_naming_service.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2001&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2001&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;OrberWeb&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/ch_orberweb.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;corba&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/corba.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2001&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2001&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;interceptors&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/interceptors.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;lname&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/lname.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;lname_component&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/lname_component.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;chapter&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2004&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2004&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;Orber Release Notes History&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/notes_history.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;2003&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;2003&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;orber_diagnostics&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/orber_diagnostics.xml</filename>
    </modified>
    <modified>
      <diff>@@ -4,23 +4,21 @@
 &lt;erlref&gt;
   &lt;header&gt;
     &lt;copyright&gt;
-      &lt;year&gt;1997&lt;/year&gt;
-      &lt;year&gt;2008&lt;/year&gt;
-      &lt;holder&gt;Ericsson AB, All Rights Reserved&lt;/holder&gt;
+      &lt;year&gt;1997&lt;/year&gt;&lt;year&gt;2009&lt;/year&gt;
+      &lt;holder&gt;Ericsson AB. All Rights Reserved.&lt;/holder&gt;
     &lt;/copyright&gt;
     &lt;legalnotice&gt;
-  The contents of this file are subject to the Erlang Public License,
-  Version 1.1, (the &quot;License&quot;); you may not use this file except in
-  compliance with the License. You should have received a copy of the
-  Erlang Public License along with this software. If not, it can be
-  retrieved online at http://www.erlang.org/.
-
-  Software distributed under the License is distributed on an &quot;AS IS&quot;
-  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
-  the License for the specific language governing rights and limitations
-  under the License.
-
-  The Initial Developer of the Original Code is Ericsson AB.
+      The contents of this file are subject to the Erlang Public License,
+      Version 1.1, (the &quot;License&quot;); you may not use this file except in
+      compliance with the License. You should have received a copy of the
+      Erlang Public License along with this software. If not, it can be
+      retrieved online at http://www.erlang.org/.
+    
+      Software distributed under the License is distributed on an &quot;AS IS&quot;
+      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+      the License for the specific language governing rights and limitations
+      under the License.
+    
     &lt;/legalnotice&gt;
 
     &lt;title&gt;orber_ifr&lt;/title&gt;</diff>
      <filename>lib/orber/doc/src/orber_ifr.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_Binding.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_BindingIterator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_BindingIterator_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_BindingList.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_Name.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NameComponent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContext.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContextExt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContextExt_InvalidAddress.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContextExt_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContext_AlreadyBound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContext_CannotProceed.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContext_InvalidName.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContext_NotEmpty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/CosNaming_NamingContext_NotFound.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/OrberApp_IFR.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/OrberApp_IFR_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/StackModule_EmptyStack.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/StackModule_Stack.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/StackModule_StackFactory.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/StackModule_StackFactory_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/StackModule_Stack_impl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/any.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/cdr_decode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/cdr_encode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/cdrlib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/corba.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/corba_boa.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/corba_object.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/erlang_binary.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/erlang_pid.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/erlang_port.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/erlang_ref.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/fixed.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/iop_ior.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/lname.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/lname_component.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/oe_CORBA.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/oe_OrberIFR.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/oe_cos_naming.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/oe_cos_naming_ext.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/oe_erlang.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/oe_stack.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_acl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_cosnaming_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_diagnostics.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_env.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_exceptions.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_aliasdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_arraydef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_attributedef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_constantdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_contained.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_container.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_enumdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_exceptiondef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_fixeddef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_idltype.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_interfacedef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_irobject.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_moduledef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_operationdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_orb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_primitivedef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_repository.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_sequencedef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_stringdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_structdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_typecode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_typedef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_uniondef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_ifr_wstringdef.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_inproxy.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_inrequest.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_insup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_net.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_net_accept.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_outproxy.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_outsup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_pm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_socketsup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_tracer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_tracer_silent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_iiop_tracer_stealth.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_initial_references.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_objectkeys.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_pi.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_request_number.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_socket.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_tb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_tc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_typedefs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_web.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/orber_web_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/stack_client.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/orber/ebin/stack_factory.beam</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: StackModule
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/StackModule.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: StackModule_EmptyStack
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/StackModule_EmptyStack.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: StackModule_Stack
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/StackModule_Stack.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: StackModule_Stack
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/StackModule_Stack.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: StackModule_StackFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/StackModule_StackFactory.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: StackModule_StackFactory
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/StackModule_StackFactory.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_stack
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/oe_stack.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_stack
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/examples/Stack/stack.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/examples/Stack/oe_stack.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: CORBA
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/CORBA.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/CORBA.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/CORBA.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: OrberApp
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/OrberApp.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: OrberApp_IFR
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/OrberApp_IFR.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: OrberApp_IFR
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/OrberApp_IFR.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: erlang
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/erlang.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: erlang_binary
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/erlang_binary.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: erlang_pid
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/erlang_pid.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: erlang_port
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/erlang_port.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: erlang_ref
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/erlang_ref.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_CORBA
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/CORBA.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/CORBA.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/oe_CORBA.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_CORBA
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/CORBA.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/CORBA.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/oe_CORBA.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_OrberIFR
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/oe_OrberIFR.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_OrberIFR
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/orber/src/OrberIFR.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/oe_OrberIFR.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Implementation stub file
 %% 
 %% Target: oe_erlang
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/oe_erlang.erl</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 %% Erlang header file
 %% 
 %% Target: oe_erlang
-%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/lib/ic/include/erlang.idl
+%% Source: /net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/lib/ic/include/erlang.idl
 %% IC vsn: 4.2.20
 %% 
 %% This file is automatically generated. DO NOT EDIT IT.</diff>
      <filename>lib/orber/src/oe_erlang.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,33 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the OS_Mon application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Os_Mon 2.2.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;An error in &lt;c&gt;memsup&lt;/c&gt; could cause &lt;c&gt;os_mon&lt;/c&gt; to
+	    report erroneous memory values on windows for ranges of
+	    memory between 2GB and 4GB. This have now been fixed.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7944&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;Added support for dragonfly OS.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7938&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Os_Mon 2.2&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/os_mon/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/cpu_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/disksup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/memsup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/nteventlog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/os_mon.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/os_mon_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/os_mon_sysinfo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/os_mon/ebin/os_sup.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:57:36
+%%% Date: 20-Apr-2009::20:47:27
 -ifndef('OTP-OS-MON-MIB').
 -define('OTP-OS-MON-MIB', true).
 </diff>
      <filename>lib/os_mon/include/OTP-OS-MON-MIB.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/otp_mibs/ebin/otp_mib.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:51:27
+%%% Date: 20-Apr-2009::20:41:21
 -ifndef('OTP-MIB').
 -define('OTP-MIB', true).
 </diff>
      <filename>lib/otp_mibs/include/OTP-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:51:27
+%%% Date: 20-Apr-2009::20:41:20
 -ifndef('OTP-REG').
 -define('OTP-REG', true).
 </diff>
      <filename>lib/otp_mibs/include/OTP-REG.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:51:27
+%%% Date: 20-Apr-2009::20:41:20
 -ifndef('OTP-TC').
 -define('OTP-TC', true).
 </diff>
      <filename>lib/otp_mibs/include/OTP-TC.hrl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/parsetools/ebin/yecc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/parsetools/ebin/yeccparser.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/parsetools/ebin/yeccscan.beam</filename>
    </modified>
    <modified>
      <diff>@@ -31,7 +31,22 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the Percept application.&lt;/p&gt;
 
-&lt;section&gt;&lt;title&gt;Percept 0.8&lt;/title&gt;
+&lt;section&gt;&lt;title&gt;Percept 0.8.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;&lt;c&gt;egd&lt;/c&gt; now supports encapsulated postscript output
+	    format.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7923&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
+    &lt;section&gt;&lt;title&gt;Percept 0.8&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
       &lt;list&gt;</diff>
      <filename>lib/percept/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/egd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/egd_font.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/egd_png.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/egd_primitives.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/egd_render.beam</filename>
    </modified>
    <modified>
      <diff>@@ -19,7 +19,7 @@
 
 {application,percept,
 	[{description, 	&quot;PERCEPT Erlang Concurrency Profiling Tool&quot;},
-	 {vsn,		&quot;0.8&quot;},
+	 {vsn,		&quot;0.8.1&quot;},
 	 {modules,	[percept,percept_db,percept_html,percept_graph,percept_analyzer]},
 	 {registered,	[percept_db,percept_port]},
 	 {applications,	[kernel,stdlib]},</diff>
      <filename>lib/percept/ebin/percept.app</filename>
    </modified>
    <modified>
      <diff>@@ -17,5 +17,5 @@
 %% %CopyrightEnd%
 %%
 
-{&quot;0.8&quot;,[],[]}.
+{&quot;0.8.1&quot;,[],[]}.
 </diff>
      <filename>lib/percept/ebin/percept.appup</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/percept.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/percept_analyzer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/percept_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/percept_graph.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/percept_html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/percept/ebin/percept_image.beam</filename>
    </modified>
    <modified>
      <diff>@@ -183,7 +183,7 @@ polygon(Image, Pts, Color) -&gt;
     cast(Image, {polygon, Pts, Color}),
     ok.
 
-%% @spec arc(egd_image(), point(), point(), integer(), color()) -&gt; ok
+%% @spec arc(egd_image(), point(), point(), color()) -&gt; ok
 %% @hidden
 %% @doc Creates an arc with radius of bbx corner.
 </diff>
      <filename>lib/percept/src/egd.erl</filename>
    </modified>
    <modified>
      <diff>@@ -264,7 +264,7 @@ span(Points) -&gt;
 
 rgb_float2byte({R,G,B}) -&gt; rgb_float2byte({R,G,B,1.0});
 rgb_float2byte({R,G,B,A}) -&gt; 
-    {trunc(R*255), trunc(G*255), trunc(G*255), trunc(A*255)}.
+    {trunc(R*255), trunc(G*255), trunc(B*255), trunc(A*255)}.
 
 rgba_byte2float({R,G,B,A}) -&gt;
     {R/255,G/255,B/255,A/255}.</diff>
      <filename>lib/percept/src/egd_primitives.erl</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-PERCEPT_VSN = 0.8
+PERCEPT_VSN = 0.8.1</diff>
      <filename>lib/percept/vsn.mk</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_buf.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_buf_buffer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_buf_converter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_buf_printer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_buf_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_main.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_module_info.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_options.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_process.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_relay.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_relay_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_shell.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_tool.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/pman/ebin/pman_win.beam</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 %% 		`asn1rt_check'
 %% 		`asn1rt_driver_handler'
 %% 
-%% Created by Igor 2009-04-15, 20:57:43.
+%% Created by Igor 2009-04-20, 20:47:35.
 %% 
 
 -module('OTP-PUB-KEY').
@@ -760,17 +760,17 @@
 %%&lt;&lt;&lt;              [ber_bin_v2, report_errors,
 %%&lt;&lt;&lt;               {cwd,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/public_key/&quot;
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/public_key/&quot;
 %%&lt;&lt;&lt;                &quot;asn1&quot;},
 %%&lt;&lt;&lt;               {outdir,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/public_key/&quot;
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/public_key/&quot;
 %%&lt;&lt;&lt;                &quot;asn1&quot;},
 %%&lt;&lt;&lt;               inline, asn1config, noobj, optimize, compact_bit_string,
 %%&lt;&lt;&lt;               der, {i, &quot;.&quot;},
 %%&lt;&lt;&lt;               {i,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/public_key/&quot;
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/public_key/&quot;
 %%&lt;&lt;&lt;                &quot;asn1&quot;}]}]).
 
 encoding_rule() -&gt; ber_bin_v2.</diff>
      <filename>lib/public_key/asn1/OTP-PUB-KEY.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/public_key/ebin/OTP-PUB-KEY.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/public_key/ebin/pubkey_cert.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/public_key/ebin/pubkey_cert_records.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/public_key/ebin/pubkey_crypto.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/public_key/ebin/pubkey_pem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/public_key/ebin/public_key.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_app_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_fgraph.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_fgraph_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_mod_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_sys_win.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_target.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/reltool/ebin/reltool_utils.beam</filename>
    </modified>
    <modified>
      <diff>@@ -742,30 +742,40 @@ create_bin(Sys, ErtsDir, RelVsnDir, TargetDir) -&gt;
     ErtsBinDir = filename:join([ErtsDir, &quot;bin&quot;]),
     BootFile = Sys#sys.boot_rel ++ &quot;.boot&quot;,
     {ok, Files} = file:list_dir(RelVsnDir),
-    [copy_file(RelVsnDir, F, SystemBinDir, F) || F &lt;- Files],
-    copy_file(RelVsnDir, BootFile, SystemBinDir, &quot;start.boot&quot;),
-    [copy_file(ErtsBinDir, F, SystemBinDir, F) || F &lt;- execs(Sys)],
-    [copy_file(F, filename:join([SystemBinDir, filename:basename(F)])) || F &lt;- escripts(Sys)],
+    [copy_file(filename:join([RelVsnDir,    F]),
+               filename:join([SystemBinDir, F])) || F &lt;- Files],
+    copy_file(filename:join([RelVsnDir,    BootFile]),
+              filename:join([SystemBinDir, &quot;start.boot&quot;])),
+    copy_file(filename:join([ErtsBinDir,   &quot;epmd&quot;]),
+              filename:join([SystemBinDir, &quot;epmd&quot;])),
+    copy_file(filename:join([ErtsBinDir,   &quot;run_erl&quot;]),
+              filename:join([SystemBinDir, &quot;run_erl&quot;])),
+    copy_file(filename:join([ErtsBinDir,   &quot;to_erl&quot;]),
+              filename:join([SystemBinDir, &quot;to_erl&quot;])),
+    %% [copy_file(RelVsnDir, F, SystemBinDir, F) || F &lt;- Files],
+    %% copy_file(RelVsnDir, BootFile, SystemBinDir, &quot;start.boot&quot;),
+    %% [copy_file(ErtsBinDir, F, SystemBinDir, F) || F &lt;- execs(Sys)],
+    %% [copy_file(F, filename:join([SystemBinDir, filename:basename(F)])) || F &lt;- escripts(Sys)],
     ok.
 
-execs(Sys) -&gt;
-    Execs = 
-	case Sys#sys.profile of
-	    standalone  -&gt; [];
-	    development -&gt; [&quot;dialyzer&quot;, &quot;erl&quot;, &quot;erlc&quot;, &quot;escript&quot;, &quot;typer&quot;];
-	    embedded    -&gt; [&quot;erl&quot;, &quot;escript&quot;]
-	end,
-    case os:type() of
-	{win32, _} -&gt; [Exec ++ &quot;.exe&quot; || Exec &lt;- Execs];
-	_          -&gt; Execs
-    end.
-
-escripts(Sys) -&gt;
-    case Sys#sys.profile of
-	standalone  -&gt; Sys#sys.escripts;
-	development -&gt; [];
-	embedded    -&gt; []
-    end.
+%% execs(Sys) -&gt;
+%%     Execs = 
+%% 	case Sys#sys.profile of
+%% 	    standalone  -&gt; [];
+%% 	    development -&gt; [&quot;dialyzer&quot;, &quot;erl&quot;, &quot;erlc&quot;, &quot;escript&quot;, &quot;typer&quot;];
+%% 	    embedded    -&gt; [&quot;erl&quot;, &quot;escript&quot;]
+%% 	end,
+%%     case os:type() of
+%% 	{win32, _} -&gt; [Exec ++ &quot;.exe&quot; || Exec &lt;- Execs];
+%% 	_          -&gt; Execs
+%%     end.
+%% 
+%% escripts(Sys) -&gt;
+%%     case Sys#sys.profile of
+%% 	standalone  -&gt; Sys#sys.escripts;
+%% 	development -&gt; [];
+%% 	embedded    -&gt; []
+%%     end.
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 
@@ -916,9 +926,9 @@ do_delete(File, regular) -&gt;
 do_delete(Dir, directory) -&gt;
     file:del_dir(Dir).
 
-copy_file(FromDir, FromBase, ToDir, ToBase) -&gt;
-    copy_file(filename:join([FromDir, FromBase]),
-	      filename:join([ToDir, ToBase])).
+%% copy_file(FromDir, FromBase, ToDir, ToBase) -&gt;
+%%     copy_file(filename:join([FromDir, FromBase]),
+%% 	      filename:join([ToDir, ToBase])).
 
 copy_file(From, To) -&gt;
     case file:list_dir(From) of</diff>
      <filename>lib/reltool/src/reltool_target.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/dbg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/erts_alloc_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/inviso_as_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/inviso_autostart.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/inviso_autostart_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/inviso_rt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/inviso_rt_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/inviso_rt_meta.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/observer_backend.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/percept_profile.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/runtime_tools.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/runtime_tools/ebin/runtime_tools_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/alarm_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/erlsrv.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/format_lib_supp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/misc_supp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/overload.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/rb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/rb_format_supp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/release_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/release_handler_1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/sasl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/sasl_report.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/sasl_report_file_h.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/sasl_report_tty_h.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/si.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/si_sasl_supp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/systools.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/systools_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/systools_make.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/systools_rc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/sasl/ebin/systools_relup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_app_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_community_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_conf.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_framework_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_generic.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_generic_mnesia.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_index.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_log.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_mini_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_misc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_note_store.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_notification_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_pdus.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_shadow_table.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_standard_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_target_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_user_based_sm_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_usm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_verbosity.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmp_view_based_acm_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_acm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_agent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_agent_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_authentication_service.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_conf.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_error.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_error_io.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_error_logger.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_error_report.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_general_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_local_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_mib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_mib_data.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_mib_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_misc_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_mpd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_net_if.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_net_if_filter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_network_interface.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_network_interface_filter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_notification_delivery_info_receiver.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_notification_filter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_set.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_set_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_set_mechanism.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_supervisor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_svbl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_symbolic_store.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_target_cache.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_trap.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_usm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpa_vacm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpc_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpc_mib_gram.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpc_mib_to_hrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpc_misc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpc_tok.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_conf.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_misc_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_mpd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_net_if.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_network_interface.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_server_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_supervisor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_user.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_user_default.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_user_old.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/ebin/snmpm_usm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/examples/ex1/ex1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/examples/ex2/snmp_ex2_manager.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/snmp/examples/ex2/snmp_ex2_simple_standard_test.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:50
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('INET-ADDRESS-MIB').
 -define('INET-ADDRESS-MIB', true).
 </diff>
      <filename>lib/snmp/include/INET-ADDRESS-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:50
+%%% Date: 20-Apr-2009::20:37:50
 -ifndef('OTP-SNMPEA-MIB').
 -define('OTP-SNMPEA-MIB', true).
 </diff>
      <filename>lib/snmp/include/OTP-SNMPEA-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:47
 -ifndef('RFC1213-MIB').
 -define('RFC1213-MIB', true).
 </diff>
      <filename>lib/snmp/include/RFC1213-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-COMMUNITY-MIB').
 -define('SNMP-COMMUNITY-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-COMMUNITY-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-FRAMEWORK-MIB').
 -define('SNMP-FRAMEWORK-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-FRAMEWORK-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-MPD-MIB').
 -define('SNMP-MPD-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-MPD-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-NOTIFICATION-MIB').
 -define('SNMP-NOTIFICATION-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-NOTIFICATION-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-TARGET-MIB').
 -define('SNMP-TARGET-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-TARGET-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:50
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-USER-BASED-SM-MIB').
 -define('SNMP-USER-BASED-SM-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-USER-BASED-SM-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:50
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-USM-AES-MIB').
 -define('SNMP-USM-AES-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-USM-AES-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:50
+%%% Date: 20-Apr-2009::20:37:49
 -ifndef('SNMP-VIEW-BASED-ACM-MIB').
 -define('SNMP-VIEW-BASED-ACM-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMP-VIEW-BASED-ACM-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:48
 -ifndef('SNMPv2-MIB').
 -define('SNMPv2-MIB', true).
 </diff>
      <filename>lib/snmp/include/SNMPv2-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:48
 -ifndef('SNMPv2-TM').
 -define('SNMPv2-TM', true).
 </diff>
      <filename>lib/snmp/include/SNMPv2-TM.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 %%% This file was automatically generated by snmpc_mib_to_hrl version 4.13.1
-%%% Date: 15-Apr-2009::20:47:49
+%%% Date: 20-Apr-2009::20:37:47
 -ifndef('STANDARD-MIB').
 -define('STANDARD-MIB', true).
 </diff>
      <filename>lib/snmp/include/STANDARD-MIB.hrl</filename>
    </modified>
    <modified>
      <diff>@@ -350,7 +350,7 @@ w(F, A) -&gt;
 %    io:format(&quot;~w:&quot; ++ F ++ &quot;~n&quot;, [?MODULE|A]).
 
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/snmp/src/compile/snmpc_mib_gram.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/DSS.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/PKCS-1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_acceptor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_acceptor_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_auth.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_bits.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_channel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_channel_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_cli.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_cm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_connection.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_connection_handler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_connection_manager.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_connection_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_dsa.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_io.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_math.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_no_io.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_rsa.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_sftp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_sftpd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_sftpd_file.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_sftpd_file_api.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_shell.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_ssh.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_sshd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_subsystem_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_system_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_transport.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_userreg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/ssh_xfer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/sshc_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssh/ebin/sshd_sup.beam</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 %% 		`asn1rt_check'
 %% 		`asn1rt_driver_handler'
 %% 
-%% Created by Igor 2009-04-15, 21:03:40.
+%% Created by Igor 2009-04-20, 20:53:23.
 %% 
 
 -module('DSS').
@@ -31,15 +31,15 @@
 %%&lt;&lt;&lt;              [ber_bin_v2, report_errors,
 %%&lt;&lt;&lt;               {cwd,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssh/src&quot;},
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssh/src&quot;},
 %%&lt;&lt;&lt;               {outdir,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssh/src&quot;},
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssh/src&quot;},
 %%&lt;&lt;&lt;               inline, noobj, optimize, compact_bit_string, der,
 %%&lt;&lt;&lt;               {i, &quot;.&quot;},
 %%&lt;&lt;&lt;               {i,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssh/src&quot;}]}]).
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssh/src&quot;}]}]).
 
 encoding_rule() -&gt; ber_bin_v2.
 </diff>
      <filename>lib/ssh/src/DSS.erl</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 %% 		`asn1rt_check'
 %% 		`asn1rt_driver_handler'
 %% 
-%% Created by Igor 2009-04-15, 21:03:39.
+%% Created by Igor 2009-04-20, 20:53:23.
 %% 
 
 -module('PKCS-1').
@@ -68,15 +68,15 @@
 %%&lt;&lt;&lt;              [ber_bin_v2, report_errors,
 %%&lt;&lt;&lt;               {cwd,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssh/src&quot;},
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssh/src&quot;},
 %%&lt;&lt;&lt;               {outdir,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssh/src&quot;},
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssh/src&quot;},
 %%&lt;&lt;&lt;               inline, noobj, optimize, compact_bit_string, der,
 %%&lt;&lt;&lt;               {i, &quot;.&quot;},
 %%&lt;&lt;&lt;               {i,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssh/src&quot;}]}]).
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssh/src&quot;}]}]).
 
 encoding_rule() -&gt; ber_bin_v2.
 </diff>
      <filename>lib/ssh/src/PKCS-1.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/OTP-PKIX.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/inet_ssl_dist.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_alert.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_app.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_base64.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_broker.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_broker_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_certificate.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_certificate_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_cipher.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_connection.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_connection_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_debug.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_handshake.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_manager.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_pem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_pkix.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_pkix_oid.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_prim.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_record.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_session.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_session_cache.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_session_cache_api.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_ssl2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_ssl3.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/ebin/ssl_tls1.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/examples/certs/ebin/make_certs.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,43 +1,43 @@
 -----BEGIN CERTIFICATE-----
-MIIC7jCCAlegAwIBAgIJAKjVbM6zfHHFMA0GCSqGSIb3DQEBBQUAMIGGMREwDwYD
+MIIC7jCCAlegAwIBAgIJAJ7r8vXBKvaSMA0GCSqGSIb3DQEBBQUAMIGGMREwDwYD
 VQQDEwhlcmxhbmdDQTETMBEGA1UECxMKRXJsYW5nIE9UUDEUMBIGA1UEChMLRXJp
 Y3Nzb24gQUIxEjAQBgNVBAcTCVN0b2NraG9sbTELMAkGA1UEBhMCU0UxJTAjBgkq
-hkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwHhcNMDkwNDE1MTg1ODEw
-WhcNMDkwNTE1MTg1ODEwWjCBhjERMA8GA1UEAxMIZXJsYW5nQ0ExEzARBgNVBAsT
+hkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwHhcNMDkwNDIwMTg0ODAx
+WhcNMDkwNTIwMTg0ODAxWjCBhjERMA8GA1UEAxMIZXJsYW5nQ0ExEzARBgNVBAsT
 CkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkBFhZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDYGRdI546vyUlw
-KWe4hbv3Um7MtXiw/Aj5+G2RC07IUapiwLf5UDZxoXKoAnW8G5UBJHz24P1OLjb1
-SktDrcmd8kt2E8fYo29IL+zJgwxl4h2KKGQXFeA37W0liz5pDwfAXsFji5PPc8Xh
-LIxQwEFLUEBesw7VqTXnIXtQv5S1CQIDAQABo2IwYDAPBgNVHRMBAf8EBTADAQH/
-MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUsVoBoKPwYDa3aC6DWx1wlJJu32kwIQYD
+aWNzc29uLnNlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDIm0xUffFLdFLI
+JVCFQ2Mi6uZg4KD08ZnLmYkgG7rFhMxeJMZ5tjllHczOx2dcTUNcrpWSnlYK+lDo
+Bnha8TGjCpxJZpIhb3Tsap2RhkbOygiVqlwbQx5EcKJV5uR6jumVf85BPoMGiF10
+rkLfYMRSMheoqlnmKxMLX0Q/QqbbyQIDAQABo2IwYDAPBgNVHRMBAf8EBTADAQH/
+MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUQ2eJPVm94DQvs+1GpYtx2hCs530wIQYD
 VR0RBBowGIEWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTANBgkqhkiG9w0BAQUFAAOB
-gQAhjl6S5CBA4uyHXzj3gzdcffQGjioD9vU7K8eCsv1yGJi/IWZH0Xf1RvjBTks7
-296iopbbBjcyOSrlUndSQnJ/VJ/I+QkX3wE6OPv7RHZO/kyJLoy2mBKz2U2f+zO4
-3sEZfCcQJ+kzjTKVVb4E66O+9zHJZgXaewWSFJJrKyFu2Q==
+gQCpiRfXkGeXuCkzf2h/5JTLkiQS8gT6a3jD2NdGtSH2c45mQBf4tWg6QJjCN8u6
+EceMZWn1f7uLvdYlCZSEAUrGX9xyz48DxvLNWca5Eae2QAYvBKzJk5081NtESr/i
+Kp39KKCiPRAjZpRzkcmzStmqp9EuXZ/raPt9ov+UcIQKyA==
 -----END CERTIFICATE-----
 
 -----BEGIN CERTIFICATE-----
 MIIDyDCCAzGgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIy
-MjE4NTgxMFowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIy
+NzE4NDgwMVowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
 MRQwEgYDVQQKEwtFcmljc3NvbiBBQjELMAkGA1UEBhMCU0UxEjAQBgNVBAcTCVN0
 b2NraG9sbTElMCMGCSqGSIb3DQEJARYWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTCB
-nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuf9b4/hjJgt8CxqYHEue+NTrgxQw
-Yn8nNcPzMxE7htHgSx7Nu7Z/F+mFH4U2W45AA/TdQxLtOQbTX/6Dj4Wn6vheHeX9
-peLFxPeL/98ow/S8yzPyRPSaZfJqKy6hAa1xe3J0g6kNDSAEr6GxJxpACdyMWJe1
-AEapmXvyyuTs+KkCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
-BAQDAgEGMB0GA1UdDgQWBBScyOeU/+B4QTI3CVkGc01BRVFT/jCBuwYDVR0jBIGz
-MIGwgBSxWgGgo/BgNrdoLoNbHXCUkm7faaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
+nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuRhX/gLUC/Kx92Fd0QUQw8Q5CYxj
+GbvaU8Phih4o//6RQzkn/4YizMppI5ekWlJv6WA5wSLlFfBJiBGZfHBFdCPPLbyM
+RLBH2PmwrAdAfPPvi72STFHiAdJhzJ3W43IQtowsg6Ib881SCiNuek049yPHxr40
++IyI18sAlpcVO8MCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
+BAQDAgEGMB0GA1UdDgQWBBSqWapRVUT/81IQxMEWAzVoKDVRmzCBuwYDVR0jBIGz
+MIGwgBRDZ4k9Wb3gNC+z7Uali3HaEKznfaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAqNVszrN8ccUwIQYDVR0RBBowGIEW
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAnuvy9cEq9pIwIQYDVR0RBBowGIEW
 cGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTAhBgNVHRIEGjAYgRZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBALypm9U5VE/RJJh9Q7AqfhoftlUy
-nmspijCzlxgaMJchC5Oj4DIQqyVL8VEcoPBSnWpHrg1QL6Kftgld4OVrcaly8jL8
-LxniQ6SsdcSTZbeTo6WNC9RZTJS0MZSa5bsVfOw+9wJZQ/ojHUmPU5v8wciYx635
-AtoUOyI1+X0XUIf9
+aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBADpxhcENHRfk4aeRYXFEPDJl1O9J
+jgrmgEKn4Bt40X3oFgcW+C8syfKakJPiRAJiDrYtp4VJXHhiJ2bSbA3QCEHNALEC
+69ccLR0wZChFIIvg8BefmwXeGlylAjJZn2/RDqFhMsk3Cnr3Hywpu8KrqEj8hjmV
+0TXHaDDXwV+uAYwx
 -----END CERTIFICATE-----
 </diff>
      <filename>lib/ssl/examples/certs/etc/client/cacerts.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,21 +2,21 @@
 MIIDuDCCAyGgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBgzEOMAwGA1UEAxMFb3Rw
 Q0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMQsw
 CQYDVQQGEwJTRTESMBAGA1UEBxMJU3RvY2tob2xtMSUwIwYJKoZIhvcNAQkBFhZw
-ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIyMjE4
-NTgxMFowgYQxDzANBgNVBAMTBmNsaWVudDETMBEGA1UECxMKRXJsYW5nIE9UUDEU
+ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIyNzE4
+NDgwMVowgYQxDzANBgNVBAMTBmNsaWVudDETMBEGA1UECxMKRXJsYW5nIE9UUDEU
 MBIGA1UEChMLRXJpY3Nzb24gQUIxCzAJBgNVBAYTAlNFMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xJTAjBgkqhkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwgZ8w
-DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALAvkKRheUxGmEnhWP2AxoK+di32BdGW
-KKhUy48AM7uG9LMM3zUvnOZdLKQJztImcA/oyHvNFu212j+usN/xT62XwH5Tjc2W
-AfmnFccIzkP2mkmvBpkD6z291f86rJib7UWd6ymAI27z/oW/5MszxkUk2oVhRxsN
-SvYEn69U4FPXAgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
-BgNVHQ4EFgQUGr5yT2ds02pLKW/b40Y6sHqiv8UwgbMGA1UdIwSBqzCBqIAUnMjn
-lP/geEEyNwlZBnNNQUVRU/6hgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
+DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBANm87eDfB+NMl6a1prjVVjPlRGwJwsyw
+ZijO5peayFezjGOEZtrvICThC5+SVRJIildGmua0KvfI87mFQKxLZgBWaHhLdaCP
+XVEpkBfeab2FVV/RmCiFj8APDPQCQOBvxwrn6HMe4SSpSSlyiNR3Pvb1Sj/BSG8z
+qZ0J4ZVnfNUDAgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
+BgNVHQ4EFgQUzTRjR3MFLqe2KEP5BGVPjAQUNl0wgbMGA1UdIwSBqzCBqIAUqlmq
+UVVE//NSEMTBFgM1aCg1UZuhgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
 EQYDVQQLEwpFcmxhbmcgT1RQMRQwEgYDVQQKEwtFcmljc3NvbiBBQjESMBAGA1UE
 BxMJU3RvY2tob2xtMQswCQYDVQQGEwJTRTElMCMGCSqGSIb3DQEJARYWcGV0ZXJA
 ZXJpeC5lcmljc3Nvbi5zZYIBATAhBgNVHREEGjAYgRZwZXRlckBlcml4LmVyaWNz
 c29uLnNlMCEGA1UdEgQaMBiBFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwDQYJKoZI
-hvcNAQEFBQADgYEAbvrtcfDSc2ssfWskGKmEuux8D0oo1ue7123MqcnDGppyc2X9
-hwZ5NO00L8rVFiXT3fr1AhyXUPD3iLjXe6PkClpeHMVeA+W8DrjZnhGrtSPUYIud
-6BbkN/MnbeG1NniO8PNcmhZmGTMQxDHTrIWepDSgC4kehZCiespMKytsJR0=
+hvcNAQEFBQADgYEAIAkXHk20kXFiPFo69XtVptDaL9NiiIso2LwlpKWDiyFRiTke
+4AwiA9E6JM2WcuPtY4/6bxW0X82Lsnf2M9RCv08WlDsJE448quYagb/XgbkB2HFN
+yi3UA/8HoMWHbK5ufWEL3ysoxwpimeU7BxidrlZgvXySBB5QLaI3Lm56Fuw=
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/client/cert.pem</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,15 @@
 -----BEGIN RSA PRIVATE KEY-----
-MIICXAIBAAKBgQCwL5CkYXlMRphJ4Vj9gMaCvnYt9gXRliioVMuPADO7hvSzDN81
-L5zmXSykCc7SJnAP6Mh7zRbttdo/rrDf8U+tl8B+U43NlgH5pxXHCM5D9ppJrwaZ
-A+s9vdX/OqyYm+1FnespgCNu8/6Fv+TLM8ZFJNqFYUcbDUr2BJ+vVOBT1wIDAQAB
-AoGALmlZQPQsb9to4o1qU91IbcieeR0GC1/y9eTgepsjBZNXgpMxeWFBg62nxM6Q
-nOtjOc2ognRURepRw9TQ4y0+P5yD4/WSuAATwDHlH67WbcXLmCkgPXFhEmqWR/ft
-I+qN7nf7qIE4s6yts9oOrc96sI4SWflvBIh5R7D/MPUPuYECQQDW748sLSbyzfRi
-PB85QEqp8REKYiRBvcQwAL/Bcbs9OthPBT5+h0toIjP2NbPN/jSfhD1VKn/gVsr+
-xLeqkQDrAkEA0djBsoxXlu3J3vz7vatxpQTVKZ5tYSlimsDOVCRjEY+nWS/vUrvb
-0KUH4suuy3BHbzqj7ZwLDLgjwLYp5pAdxQJBAIdtnprJQHdRCiEznMDoH6OAv6n5
-OLsrpQhSEIEE9mOYRl9UAJKdEQhmNLN4Fvk+qU2xdyvIgZaLWZC5xrh0cU0CQALS
-+fhfLyaW2KqpmPG6hvMDl6LRwQMXvX37rksvmi24UzY+EOh6IsEyF2MT/qw6PJvg
-nCgse3GWYNTNHs89jUkCQDPSt4zrhMO+JNC9Aw3t3PTpmumPs6WD2Dy7wd6HrT1W
-om6nTU9w+C9PBbSO/1ovqOonb6KpFJUnkQMo5vY8mp8=
+MIICWwIBAAKBgQDZvO3g3wfjTJemtaa41VYz5URsCcLMsGYozuaXmshXs4xjhGba
+7yAk4QufklUSSIpXRprmtCr3yPO5hUCsS2YAVmh4S3Wgj11RKZAX3mm9hVVf0Zgo
+hY/ADwz0AkDgb8cK5+hzHuEkqUkpcojUdz729Uo/wUhvM6mdCeGVZ3zVAwIDAQAB
+AoGAb76YTonn4G1UfwhG0iEapnOJU/EGekolg9f7W97h5rCM4h33M3D5jDO65WAS
+LNnxtazUnoXkb1pASvvqHwJrC9r0xF2Hyn2JlxuiO0QMiUxynO8rNMqB+qPWe9jN
+lZBF6Y8BrH6pH4F7rvpSNzKYk0O7QIaXZAgJ7Nrjfue8V7ECQQDuGdwOThpoUS2J
+hS/h/f6zDCeh0K5VOiDAwPcr/AP1if3KjIU5isv5G6lM2bDcnBLtISZ/9UkYSG42
+46EAv0xlAkEA6hsxdvQpmoqW0ji8IJdsnIUn6k1BLpfc2kLLqGwtvMAayvrP80Ta
+s1moeNoSG2Q8Nu+ZwEhdz6Wl1Djt0NVBRwJAFZK+P4WQGveP+q/YoM9UroBhbuXr
+hclYgl55hsC00yCHoDyPLaGHzbBV7KKkxbhWdqnURS/CSbL2WX7SbbDniQJAS4Ss
+JzhKN20fi/77SPQv+CnIH3/+V95rQwkrE1CaTHoX6oSQEmSSvCpe+2U1VBq4hewy
+x+FQScygut4GcUhpvwJADN8Aqw4Q70sLQEri1FoFN7kNHQ6sfxDuywNHku47trRg
+Lg7V+3tD7wyS+irNHJcAcCnyChy7JvdNslL+EEIhdQ==
 -----END RSA PRIVATE KEY-----</diff>
      <filename>lib/ssl/examples/certs/etc/client/key.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,11 @@
 MIIBxTCCAS4CAQAwgYQxDzANBgNVBAMTBmNsaWVudDETMBEGA1UECxMKRXJsYW5n
 IE9UUDEUMBIGA1UEChMLRXJpY3Nzb24gQUIxEjAQBgNVBAcTCVN0b2NraG9sbTEL
 MAkGA1UEBhMCU0UxJTAjBgkqhkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24u
-c2UwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALAvkKRheUxGmEnhWP2AxoK+
-di32BdGWKKhUy48AM7uG9LMM3zUvnOZdLKQJztImcA/oyHvNFu212j+usN/xT62X
-wH5Tjc2WAfmnFccIzkP2mkmvBpkD6z291f86rJib7UWd6ymAI27z/oW/5MszxkUk
-2oVhRxsNSvYEn69U4FPXAgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQCkHz1f+Ltt
-bwCLSeSvhtfoTs1yyWI86j+r4puQ1waK8DUt+SeWnb8dwGhVrggdb8xDaoWZ3Jp5
-IA/EMHT7eKTnYKmYzdZEfmGUfZrfmfNcs0myBRmqfLHr2opUgfbQ7CBpbGgYEaup
-Ietkumx1Pww1THlCUxIEKqUfV5kqiwVmYA==
+c2UwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBANm87eDfB+NMl6a1prjVVjPl
+RGwJwsywZijO5peayFezjGOEZtrvICThC5+SVRJIildGmua0KvfI87mFQKxLZgBW
+aHhLdaCPXVEpkBfeab2FVV/RmCiFj8APDPQCQOBvxwrn6HMe4SSpSSlyiNR3Pvb1
+Sj/BSG8zqZ0J4ZVnfNUDAgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQCbFAuBQi7H
+nxtwRgESFxccLWIAI6nOg4MppZVq5BjXF1a/leulA7paEE9nifD6K//oG1h17o6i
+M+OB5DDOspkHqcO+/mWRnweH15dFr3s07lny3T+rHOa8gxKAEGNjdDYLeb8wB3XZ
+Mg0RU70QMmz+1UDTmWuhumsynAOFpkGoFw==
 -----END CERTIFICATE REQUEST-----</diff>
      <filename>lib/ssl/examples/certs/etc/client/req.pem</filename>
    </modified>
    <modified>
      <diff>@@ -1,18 +1,18 @@
 -----BEGIN CERTIFICATE-----
-MIIC7jCCAlegAwIBAgIJAKjVbM6zfHHFMA0GCSqGSIb3DQEBBQUAMIGGMREwDwYD
+MIIC7jCCAlegAwIBAgIJAJ7r8vXBKvaSMA0GCSqGSIb3DQEBBQUAMIGGMREwDwYD
 VQQDEwhlcmxhbmdDQTETMBEGA1UECxMKRXJsYW5nIE9UUDEUMBIGA1UEChMLRXJp
 Y3Nzb24gQUIxEjAQBgNVBAcTCVN0b2NraG9sbTELMAkGA1UEBhMCU0UxJTAjBgkq
-hkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwHhcNMDkwNDE1MTg1ODEw
-WhcNMDkwNTE1MTg1ODEwWjCBhjERMA8GA1UEAxMIZXJsYW5nQ0ExEzARBgNVBAsT
+hkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwHhcNMDkwNDIwMTg0ODAx
+WhcNMDkwNTIwMTg0ODAxWjCBhjERMA8GA1UEAxMIZXJsYW5nQ0ExEzARBgNVBAsT
 CkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkBFhZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDYGRdI546vyUlw
-KWe4hbv3Um7MtXiw/Aj5+G2RC07IUapiwLf5UDZxoXKoAnW8G5UBJHz24P1OLjb1
-SktDrcmd8kt2E8fYo29IL+zJgwxl4h2KKGQXFeA37W0liz5pDwfAXsFji5PPc8Xh
-LIxQwEFLUEBesw7VqTXnIXtQv5S1CQIDAQABo2IwYDAPBgNVHRMBAf8EBTADAQH/
-MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUsVoBoKPwYDa3aC6DWx1wlJJu32kwIQYD
+aWNzc29uLnNlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDIm0xUffFLdFLI
+JVCFQ2Mi6uZg4KD08ZnLmYkgG7rFhMxeJMZ5tjllHczOx2dcTUNcrpWSnlYK+lDo
+Bnha8TGjCpxJZpIhb3Tsap2RhkbOygiVqlwbQx5EcKJV5uR6jumVf85BPoMGiF10
+rkLfYMRSMheoqlnmKxMLX0Q/QqbbyQIDAQABo2IwYDAPBgNVHRMBAf8EBTADAQH/
+MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUQ2eJPVm94DQvs+1GpYtx2hCs530wIQYD
 VR0RBBowGIEWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTANBgkqhkiG9w0BAQUFAAOB
-gQAhjl6S5CBA4uyHXzj3gzdcffQGjioD9vU7K8eCsv1yGJi/IWZH0Xf1RvjBTks7
-296iopbbBjcyOSrlUndSQnJ/VJ/I+QkX3wE6OPv7RHZO/kyJLoy2mBKz2U2f+zO4
-3sEZfCcQJ+kzjTKVVb4E66O+9zHJZgXaewWSFJJrKyFu2Q==
+gQCpiRfXkGeXuCkzf2h/5JTLkiQS8gT6a3jD2NdGtSH2c45mQBf4tWg6QJjCN8u6
+EceMZWn1f7uLvdYlCZSEAUrGX9xyz48DxvLNWca5Eae2QAYvBKzJk5081NtESr/i
+Kp39KKCiPRAjZpRzkcmzStmqp9EuXZ/raPt9ov+UcIQKyA==
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/erlangCA/cert.pem</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-V	190222185810Z		01	unknown	/CN=otpCA/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se
+V	190227184801Z		01	unknown	/CN=otpCA/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se</diff>
      <filename>lib/ssl/examples/certs/etc/erlangCA/index.txt</filename>
    </modified>
    <modified>
      <diff>@@ -2,22 +2,22 @@
 MIIDyDCCAzGgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIy
-MjE4NTgxMFowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIy
+NzE4NDgwMVowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
 MRQwEgYDVQQKEwtFcmljc3NvbiBBQjELMAkGA1UEBhMCU0UxEjAQBgNVBAcTCVN0
 b2NraG9sbTElMCMGCSqGSIb3DQEJARYWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTCB
-nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuf9b4/hjJgt8CxqYHEue+NTrgxQw
-Yn8nNcPzMxE7htHgSx7Nu7Z/F+mFH4U2W45AA/TdQxLtOQbTX/6Dj4Wn6vheHeX9
-peLFxPeL/98ow/S8yzPyRPSaZfJqKy6hAa1xe3J0g6kNDSAEr6GxJxpACdyMWJe1
-AEapmXvyyuTs+KkCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
-BAQDAgEGMB0GA1UdDgQWBBScyOeU/+B4QTI3CVkGc01BRVFT/jCBuwYDVR0jBIGz
-MIGwgBSxWgGgo/BgNrdoLoNbHXCUkm7faaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
+nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuRhX/gLUC/Kx92Fd0QUQw8Q5CYxj
+GbvaU8Phih4o//6RQzkn/4YizMppI5ekWlJv6WA5wSLlFfBJiBGZfHBFdCPPLbyM
+RLBH2PmwrAdAfPPvi72STFHiAdJhzJ3W43IQtowsg6Ib881SCiNuek049yPHxr40
++IyI18sAlpcVO8MCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
+BAQDAgEGMB0GA1UdDgQWBBSqWapRVUT/81IQxMEWAzVoKDVRmzCBuwYDVR0jBIGz
+MIGwgBRDZ4k9Wb3gNC+z7Uali3HaEKznfaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAqNVszrN8ccUwIQYDVR0RBBowGIEW
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAnuvy9cEq9pIwIQYDVR0RBBowGIEW
 cGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTAhBgNVHRIEGjAYgRZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBALypm9U5VE/RJJh9Q7AqfhoftlUy
-nmspijCzlxgaMJchC5Oj4DIQqyVL8VEcoPBSnWpHrg1QL6Kftgld4OVrcaly8jL8
-LxniQ6SsdcSTZbeTo6WNC9RZTJS0MZSa5bsVfOw+9wJZQ/ojHUmPU5v8wciYx635
-AtoUOyI1+X0XUIf9
+aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBADpxhcENHRfk4aeRYXFEPDJl1O9J
+jgrmgEKn4Bt40X3oFgcW+C8syfKakJPiRAJiDrYtp4VJXHhiJ2bSbA3QCEHNALEC
+69ccLR0wZChFIIvg8BefmwXeGlylAjJZn2/RDqFhMsk3Cnr3Hywpu8KrqEj8hjmV
+0TXHaDDXwV+uAYwx
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/erlangCA/newcerts/01.pem</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/examples/certs/etc/erlangCA/private/RAND</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,15 @@
 -----BEGIN RSA PRIVATE KEY-----
-MIICXwIBAAKBgQDYGRdI546vyUlwKWe4hbv3Um7MtXiw/Aj5+G2RC07IUapiwLf5
-UDZxoXKoAnW8G5UBJHz24P1OLjb1SktDrcmd8kt2E8fYo29IL+zJgwxl4h2KKGQX
-FeA37W0liz5pDwfAXsFji5PPc8XhLIxQwEFLUEBesw7VqTXnIXtQv5S1CQIDAQAB
-AoGBAIdrKdFQ8nSsMe4stEfI3qK9MJvt+MUIG+Pxz09+g486xgh+douwvX11y/EH
-IZqQuk5t/DWFhpcwlNYgCYxO4rGGFe4cTJlRXFwsFnV/KMrW7nAPfVGB+N7Yxs7j
-aiy1zCX4JEa/BRy9W0roUR3lpnKsNMri167/ejYtYuoZ7gAFAkEA8fOrc4U5hF7/
-k+I9zGeifLJ1/wbIxCWjSaXanGgTo5OrItFbMA2PQDF0cYF1XkOaQ5oUu0gyytlD
-89jhqR8zTwJBAOSlImwVCGQ2fbpWfwl9diwRtELQKa1tG08AAAmA3dgop2Sz3lLi
-wymcw21ntWKmSnl7ZwlbWQOeHx6kgBmE3CcCQQCureBjd5St97QHPXimYU/TPTip
-VWmPCylXW5F4CD/dghg0+/ccuz1n+Ax8gh2NX7s5AT3kdFyPTMqde0B4TFlLAkEA
-vp7l+dH3MwUzAN0IAHN2x/rinClL9ehWsiA/56xmR8Zs+En0+olPSCwHyfiCgoI8
-6Nb26hgcOCXlr/hZS+02VQJBAKJ7Pnak9M9rZEXggOhdriaASAsif0IAECWVRDPG
-49Y35GQ6TuirrqgY6/PdV7ceAXCnU4GHih6/3Ivb4ALLkHk=
+MIICXAIBAAKBgQDIm0xUffFLdFLIJVCFQ2Mi6uZg4KD08ZnLmYkgG7rFhMxeJMZ5
+tjllHczOx2dcTUNcrpWSnlYK+lDoBnha8TGjCpxJZpIhb3Tsap2RhkbOygiVqlwb
+Qx5EcKJV5uR6jumVf85BPoMGiF10rkLfYMRSMheoqlnmKxMLX0Q/QqbbyQIDAQAB
+AoGAJBhNU6aVlA4KFxkfs9q8K7w4V5YTX/9YvNmTYsOah4+tdgMH8z5mdVs3Tr1y
+S5lbVYHUR91VfgQsKpN/dF2RoILMTzx0QE44ILqC67LsnSi6jScfXELs017YA6ec
+RDNoQQ9GTvMg6XA2X2xNQ7n8HfJwekhN2PYQyFm/85NsoEECQQDvRX6l7EmTk4/c
+qZRsi3KP4AHKMdVKyS2UC1F6ijCnF3FEf4Wic1UAWdl5wI4nIC5Aib0QqzsYHgm1
+YV3adaQjAkEA1qHGvcsUl52me8+6oQT/Xh2ulegz26btntxvEbHpsg7U3xlHY3IR
+uVesg8cXwRzY8kiFSZ1F6Lc2O5hB5e4ZIwJABYynE1IXosSZYZTNTHcvgQbBA9+E
+AugHlpdsnFr4Jef1SJFsmAf0wL1Uve4pXd7xM63+JJTUGgsYToyjkJ2J4QJARgMr
+k0mlg/eXERgn5tJ8grTn+FpwYBxJsuJxELKaaszPv569XMEe6vige7P8GbBRTGc/
+o028OjdZZ4M5K8nJRQJBAJ7g6Lp2EG9ZMdwcjt77k7GOQjZ0rjnP3TGsc/Lmrd9v
+O0P7HP4Nmnv1Gn8Z+tm1mX38RhR+JgLRIfWTOSE2CyY=
 -----END RSA PRIVATE KEY-----</diff>
      <filename>lib/ssl/examples/certs/etc/erlangCA/private/key.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,22 +2,22 @@
 MIIDyDCCAzGgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIy
-MjE4NTgxMFowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIy
+NzE4NDgwMVowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
 MRQwEgYDVQQKEwtFcmljc3NvbiBBQjELMAkGA1UEBhMCU0UxEjAQBgNVBAcTCVN0
 b2NraG9sbTElMCMGCSqGSIb3DQEJARYWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTCB
-nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuf9b4/hjJgt8CxqYHEue+NTrgxQw
-Yn8nNcPzMxE7htHgSx7Nu7Z/F+mFH4U2W45AA/TdQxLtOQbTX/6Dj4Wn6vheHeX9
-peLFxPeL/98ow/S8yzPyRPSaZfJqKy6hAa1xe3J0g6kNDSAEr6GxJxpACdyMWJe1
-AEapmXvyyuTs+KkCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
-BAQDAgEGMB0GA1UdDgQWBBScyOeU/+B4QTI3CVkGc01BRVFT/jCBuwYDVR0jBIGz
-MIGwgBSxWgGgo/BgNrdoLoNbHXCUkm7faaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
+nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuRhX/gLUC/Kx92Fd0QUQw8Q5CYxj
+GbvaU8Phih4o//6RQzkn/4YizMppI5ekWlJv6WA5wSLlFfBJiBGZfHBFdCPPLbyM
+RLBH2PmwrAdAfPPvi72STFHiAdJhzJ3W43IQtowsg6Ib881SCiNuek049yPHxr40
++IyI18sAlpcVO8MCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
+BAQDAgEGMB0GA1UdDgQWBBSqWapRVUT/81IQxMEWAzVoKDVRmzCBuwYDVR0jBIGz
+MIGwgBRDZ4k9Wb3gNC+z7Uali3HaEKznfaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAqNVszrN8ccUwIQYDVR0RBBowGIEW
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAnuvy9cEq9pIwIQYDVR0RBBowGIEW
 cGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTAhBgNVHRIEGjAYgRZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBALypm9U5VE/RJJh9Q7AqfhoftlUy
-nmspijCzlxgaMJchC5Oj4DIQqyVL8VEcoPBSnWpHrg1QL6Kftgld4OVrcaly8jL8
-LxniQ6SsdcSTZbeTo6WNC9RZTJS0MZSa5bsVfOw+9wJZQ/ojHUmPU5v8wciYx635
-AtoUOyI1+X0XUIf9
+aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBADpxhcENHRfk4aeRYXFEPDJl1O9J
+jgrmgEKn4Bt40X3oFgcW+C8syfKakJPiRAJiDrYtp4VJXHhiJ2bSbA3QCEHNALEC
+69ccLR0wZChFIIvg8BefmwXeGlylAjJZn2/RDqFhMsk3Cnr3Hywpu8KrqEj8hjmV
+0TXHaDDXwV+uAYwx
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/cert.pem</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1,2 @@
-V	190222185810Z		01	unknown	/CN=client/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se
-V	190222185810Z		02	unknown	/CN=server/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se
+V	190227184801Z		01	unknown	/CN=client/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se
+V	190227184801Z		02	unknown	/CN=server/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/index.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-V	190222185810Z		01	unknown	/CN=client/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se
+V	190227184801Z		01	unknown	/CN=client/OU=Erlang OTP/O=Ericsson AB/C=SE/L=Stockholm/emailAddress=peter@erix.ericsson.se</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/index.txt.old</filename>
    </modified>
    <modified>
      <diff>@@ -2,21 +2,21 @@
 MIIDuDCCAyGgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBgzEOMAwGA1UEAxMFb3Rw
 Q0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMQsw
 CQYDVQQGEwJTRTESMBAGA1UEBxMJU3RvY2tob2xtMSUwIwYJKoZIhvcNAQkBFhZw
-ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIyMjE4
-NTgxMFowgYQxDzANBgNVBAMTBmNsaWVudDETMBEGA1UECxMKRXJsYW5nIE9UUDEU
+ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIyNzE4
+NDgwMVowgYQxDzANBgNVBAMTBmNsaWVudDETMBEGA1UECxMKRXJsYW5nIE9UUDEU
 MBIGA1UEChMLRXJpY3Nzb24gQUIxCzAJBgNVBAYTAlNFMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xJTAjBgkqhkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwgZ8w
-DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALAvkKRheUxGmEnhWP2AxoK+di32BdGW
-KKhUy48AM7uG9LMM3zUvnOZdLKQJztImcA/oyHvNFu212j+usN/xT62XwH5Tjc2W
-AfmnFccIzkP2mkmvBpkD6z291f86rJib7UWd6ymAI27z/oW/5MszxkUk2oVhRxsN
-SvYEn69U4FPXAgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
-BgNVHQ4EFgQUGr5yT2ds02pLKW/b40Y6sHqiv8UwgbMGA1UdIwSBqzCBqIAUnMjn
-lP/geEEyNwlZBnNNQUVRU/6hgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
+DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBANm87eDfB+NMl6a1prjVVjPlRGwJwsyw
+ZijO5peayFezjGOEZtrvICThC5+SVRJIildGmua0KvfI87mFQKxLZgBWaHhLdaCP
+XVEpkBfeab2FVV/RmCiFj8APDPQCQOBvxwrn6HMe4SSpSSlyiNR3Pvb1Sj/BSG8z
+qZ0J4ZVnfNUDAgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
+BgNVHQ4EFgQUzTRjR3MFLqe2KEP5BGVPjAQUNl0wgbMGA1UdIwSBqzCBqIAUqlmq
+UVVE//NSEMTBFgM1aCg1UZuhgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
 EQYDVQQLEwpFcmxhbmcgT1RQMRQwEgYDVQQKEwtFcmljc3NvbiBBQjESMBAGA1UE
 BxMJU3RvY2tob2xtMQswCQYDVQQGEwJTRTElMCMGCSqGSIb3DQEJARYWcGV0ZXJA
 ZXJpeC5lcmljc3Nvbi5zZYIBATAhBgNVHREEGjAYgRZwZXRlckBlcml4LmVyaWNz
 c29uLnNlMCEGA1UdEgQaMBiBFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwDQYJKoZI
-hvcNAQEFBQADgYEAbvrtcfDSc2ssfWskGKmEuux8D0oo1ue7123MqcnDGppyc2X9
-hwZ5NO00L8rVFiXT3fr1AhyXUPD3iLjXe6PkClpeHMVeA+W8DrjZnhGrtSPUYIud
-6BbkN/MnbeG1NniO8PNcmhZmGTMQxDHTrIWepDSgC4kehZCiespMKytsJR0=
+hvcNAQEFBQADgYEAIAkXHk20kXFiPFo69XtVptDaL9NiiIso2LwlpKWDiyFRiTke
+4AwiA9E6JM2WcuPtY4/6bxW0X82Lsnf2M9RCv08WlDsJE448quYagb/XgbkB2HFN
+yi3UA/8HoMWHbK5ufWEL3ysoxwpimeU7BxidrlZgvXySBB5QLaI3Lm56Fuw=
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/newcerts/01.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,21 +2,21 @@
 MIIDuDCCAyGgAwIBAgIBAjANBgkqhkiG9w0BAQUFADCBgzEOMAwGA1UEAxMFb3Rw
 Q0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMQsw
 CQYDVQQGEwJTRTESMBAGA1UEBxMJU3RvY2tob2xtMSUwIwYJKoZIhvcNAQkBFhZw
-ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIyMjE4
-NTgxMFowgYQxDzANBgNVBAMTBnNlcnZlcjETMBEGA1UECxMKRXJsYW5nIE9UUDEU
+ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIyNzE4
+NDgwMVowgYQxDzANBgNVBAMTBnNlcnZlcjETMBEGA1UECxMKRXJsYW5nIE9UUDEU
 MBIGA1UEChMLRXJpY3Nzb24gQUIxCzAJBgNVBAYTAlNFMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xJTAjBgkqhkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwgZ8w
-DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPIFjyuvCgnKHhxDkNsUWWWg4G8Rg9Qi
-pBw0M/cK3qt4m+5Ma73o3BCMwPSTkFgjtW1t/FLD3SFV1+HR2ZuIJBGE08AgLUVb
-4YB8WQBf9xRWbOZRhwThcwt2ajsA7/7Rnf1yskqlwjgCxAnd73N2KqeqjpZpoV+a
-kmmLBvhQSBc9AgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
-BgNVHQ4EFgQUhCUUqGE8qoo3AUCJjEiCMMxDPqowgbMGA1UdIwSBqzCBqIAUnMjn
-lP/geEEyNwlZBnNNQUVRU/6hgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
+DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPcupyx1jYRlqcRwSwxQELI5iWZaS9Ut
+H42aaan/PzVODfiBhDPkiDcPR8YUK4i+mfnv2LmyPQbXGOyYXcTobthnTG6PkcYM
+dVVvhAtxfZAIb+cVbTfYVsrLaUN4xlOvVz0MxHch12bs5QIEqVvE3zW6DNkzlTI0
+QM8GDnHrJMPXAgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
+BgNVHQ4EFgQUerwjQB24guX73zL9SAjaQk4Lbh8wgbMGA1UdIwSBqzCBqIAUqlmq
+UVVE//NSEMTBFgM1aCg1UZuhgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
 EQYDVQQLEwpFcmxhbmcgT1RQMRQwEgYDVQQKEwtFcmljc3NvbiBBQjESMBAGA1UE
 BxMJU3RvY2tob2xtMQswCQYDVQQGEwJTRTElMCMGCSqGSIb3DQEJARYWcGV0ZXJA
 ZXJpeC5lcmljc3Nvbi5zZYIBATAhBgNVHREEGjAYgRZwZXRlckBlcml4LmVyaWNz
 c29uLnNlMCEGA1UdEgQaMBiBFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwDQYJKoZI
-hvcNAQEFBQADgYEAaP3lkXtBLcIHlOys0+0SmAHLktbhI1RWYCSBrDs6luEFBvQ9
-CBFxYblQcFSRtWBJvdw5nQP0JME+f/EkXzLOMO3N/qYAaJH2K177c/kO4VD6AFw0
-vOvhwXD5vBejJCZQiFCqH+nCcSrULsv9wfgY5eqx33/c0OxrY4ZKghME/ms=
+hvcNAQEFBQADgYEABm0VmaLf0Us0gRjWfLqsEKhjaNlGWKPiwv/3w71dkaeUoevM
+X3a+bhJdsEyUh+Z+TBvs3tFSzMApyfNZJIJjtnOOv2ALyVIny5EKBvEjRbVqMRO8
+3vsV055vOtZFzzi7G9Xb1IUlsi5MPUB9XEavHJywcCWJkMTmGP3R1wQD7aE=
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/newcerts/02.pem</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/private/RAND</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,15 @@
 -----BEGIN RSA PRIVATE KEY-----
-MIICXgIBAAKBgQC5/1vj+GMmC3wLGpgcS5741OuDFDBifyc1w/MzETuG0eBLHs27
-tn8X6YUfhTZbjkAD9N1DEu05BtNf/oOPhafq+F4d5f2l4sXE94v/3yjD9LzLM/JE
-9Jpl8morLqEBrXF7cnSDqQ0NIASvobEnGkAJ3IxYl7UARqmZe/LK5Oz4qQIDAQAB
-AoGBAKpUH2J1ZNbCTaYdhI7k8YAN/F7dbjHFH7Ms7tolPc4JBM3GN8FfLqRHRZHH
-/C975UO6SaXS/0rp5UhTW0djrpD+SOupmWebxgdwPHm9wTXZu7Ad6HV5Sdgjx1xj
-LTZfed30SkIY7Q7lLX+A8CCDK41kME4RHl73jlCrMd2Q0czBAkEA7J69k187CZGz
-j2gvHH7ZoB0r4Y9+Z8DBS5Y1AqA1goWy7R0B9V6EXUxQ44kSw2QO76uoxlEq5PmX
-j8yxnza9HwJBAMk7NG2fpATBiIq5pYP3BU9uGaZ/5zvXlvGhY4d7vZOc957Dcs9k
-7dO6vSMY/Ye98s4KCSYrdb1+SZxsfmezyTcCQQCi4S7MWHxyPNqmt+feLK+v2QTQ
-0w8HapdkabR550COZWxiblpfxj1FX/g6eKvy1li1wKuAQHVPg0RCV3xZhbuvAkEA
-m4YZeBworNBS0jy28m4I+aGzS16Q/UwbSfacsMpu81YefuK5qhZsRPaPVT/sOmwQ
-6zMQbSKrpd+jzrR/YXCvMwJAcPRSVIH7ccN+bFR20Sw+MTd4hjFZEnDIGfa1AwSg
-khJrr+xQLGbzZWV3EFoN0a6hAHhqnbXgFUFgr25gZhPY3g==
+MIICXgIBAAKBgQC5GFf+AtQL8rH3YV3RBRDDxDkJjGMZu9pTw+GKHij//pFDOSf/
+hiLMymkjl6RaUm/pYDnBIuUV8EmIEZl8cEV0I88tvIxEsEfY+bCsB0B88++LvZJM
+UeIB0mHMndbjchC2jCyDohvzzVIKI256TTj3I8fGvjT4jIjXywCWlxU7wwIDAQAB
+AoGBAKM4lF+qntLqcYV0lwZ7MQ1xO9rvsXQ/84dqdLkXX5BfLDnbbSonXwi4dX6t
+eoErsQRblpJ58wolmrIi0vapCpSfIIDpkvUBhhmX2CS0tCgRMtSu6VJZe9P2s7C2
+HoEGKy8XJz1H1HhurJGXWUw32XFLXwUiaWmxBkwtZdWmGkYBAkEA6ZYvR9rtoSg3
+7+dxv5iEt/t7SYM7HOQO1+eOPikwhW7MGPoJgQzSN/TgOEv8BB3tyjDkT16nuAhD
+NYQkGtI4zwJBAMrbA4OhVCIjwuzuqjSNMXo0QDcdhSVWMxvlg+3thok2O83RbgN/
+HMACKMRjimZsN/bb/Dmd2IJbvOU2IDe54s0CQQCkDYKvaKc0ZFbE+zv8YFX2EX2J
+J83AgLucD1jrd2pIjIRzlkhOhn6uJiHD6Dnbelmjg6sVw1jv+32YfHIPFE4pAkBf
+poGzsYBwUJh7C9ZpzSHFU5nr4xmDD3At+T0KFXPYgyAT3mqXb3po9xut7pm1zdVd
+q0D1Ef6jCQq6sZjjbd0JAkEArX9W/Pn3WAv9YDcGypUgb98MOrx4bkCBqSe9asX6
+duq0Hg4ifioXlGPOuiEoMvC9kIdVl/AFa70+6dTIwZ4L/w==
 -----END RSA PRIVATE KEY-----</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/private/key.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,11 @@
 MIIBxDCCAS0CAQAwgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcg
 T1RQMRQwEgYDVQQKEwtFcmljc3NvbiBBQjESMBAGA1UEBxMJU3RvY2tob2xtMQsw
 CQYDVQQGEwJTRTElMCMGCSqGSIb3DQEJARYWcGV0ZXJAZXJpeC5lcmljc3Nvbi5z
-ZTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuf9b4/hjJgt8CxqYHEue+NTr
-gxQwYn8nNcPzMxE7htHgSx7Nu7Z/F+mFH4U2W45AA/TdQxLtOQbTX/6Dj4Wn6vhe
-HeX9peLFxPeL/98ow/S8yzPyRPSaZfJqKy6hAa1xe3J0g6kNDSAEr6GxJxpACdyM
-WJe1AEapmXvyyuTs+KkCAwEAAaAAMA0GCSqGSIb3DQEBBQUAA4GBAIwAp64z8N1/
-WV09EfCs6bm72hHd2oYRGE1uwHXaBBU9FXvH5XEV/uerKYSoZvauXyK99HSGyT1+
-oikE2Wgs3Jx+8cqqtHZFpc2lPYP8Jml9EIQKG9vbitgPteMLWVTHTSl937RbhP/F
-GTZAjvqOW41Lf7NktnSwvNo87dheVi6C
+ZTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuRhX/gLUC/Kx92Fd0QUQw8Q5
+CYxjGbvaU8Phih4o//6RQzkn/4YizMppI5ekWlJv6WA5wSLlFfBJiBGZfHBFdCPP
+LbyMRLBH2PmwrAdAfPPvi72STFHiAdJhzJ3W43IQtowsg6Ib881SCiNuek049yPH
+xr40+IyI18sAlpcVO8MCAwEAAaAAMA0GCSqGSIb3DQEBBQUAA4GBAJBUftje4Z6K
+WPQdog68kE+kdIV45VySpt44f0bzSlPeQoaQaYKESLl+lA07MIZN15147d8xrIhg
+JR3Jj9HCL9K1nGuXtSBG4ypjR9mCuXurEe9hFmy4peEP87UeyQkR0IkJmUqMiq1z
+JS+QZUKa3tTIS5bNXqurzK6YdyasjVKx
 -----END CERTIFICATE REQUEST-----</diff>
      <filename>lib/ssl/examples/certs/etc/otpCA/req.pem</filename>
    </modified>
    <modified>
      <diff>@@ -1,43 +1,43 @@
 -----BEGIN CERTIFICATE-----
-MIIC7jCCAlegAwIBAgIJAKjVbM6zfHHFMA0GCSqGSIb3DQEBBQUAMIGGMREwDwYD
+MIIC7jCCAlegAwIBAgIJAJ7r8vXBKvaSMA0GCSqGSIb3DQEBBQUAMIGGMREwDwYD
 VQQDEwhlcmxhbmdDQTETMBEGA1UECxMKRXJsYW5nIE9UUDEUMBIGA1UEChMLRXJp
 Y3Nzb24gQUIxEjAQBgNVBAcTCVN0b2NraG9sbTELMAkGA1UEBhMCU0UxJTAjBgkq
-hkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwHhcNMDkwNDE1MTg1ODEw
-WhcNMDkwNTE1MTg1ODEwWjCBhjERMA8GA1UEAxMIZXJsYW5nQ0ExEzARBgNVBAsT
+hkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwHhcNMDkwNDIwMTg0ODAx
+WhcNMDkwNTIwMTg0ODAxWjCBhjERMA8GA1UEAxMIZXJsYW5nQ0ExEzARBgNVBAsT
 CkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkBFhZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDYGRdI546vyUlw
-KWe4hbv3Um7MtXiw/Aj5+G2RC07IUapiwLf5UDZxoXKoAnW8G5UBJHz24P1OLjb1
-SktDrcmd8kt2E8fYo29IL+zJgwxl4h2KKGQXFeA37W0liz5pDwfAXsFji5PPc8Xh
-LIxQwEFLUEBesw7VqTXnIXtQv5S1CQIDAQABo2IwYDAPBgNVHRMBAf8EBTADAQH/
-MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUsVoBoKPwYDa3aC6DWx1wlJJu32kwIQYD
+aWNzc29uLnNlMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDIm0xUffFLdFLI
+JVCFQ2Mi6uZg4KD08ZnLmYkgG7rFhMxeJMZ5tjllHczOx2dcTUNcrpWSnlYK+lDo
+Bnha8TGjCpxJZpIhb3Tsap2RhkbOygiVqlwbQx5EcKJV5uR6jumVf85BPoMGiF10
+rkLfYMRSMheoqlnmKxMLX0Q/QqbbyQIDAQABo2IwYDAPBgNVHRMBAf8EBTADAQH/
+MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUQ2eJPVm94DQvs+1GpYtx2hCs530wIQYD
 VR0RBBowGIEWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTANBgkqhkiG9w0BAQUFAAOB
-gQAhjl6S5CBA4uyHXzj3gzdcffQGjioD9vU7K8eCsv1yGJi/IWZH0Xf1RvjBTks7
-296iopbbBjcyOSrlUndSQnJ/VJ/I+QkX3wE6OPv7RHZO/kyJLoy2mBKz2U2f+zO4
-3sEZfCcQJ+kzjTKVVb4E66O+9zHJZgXaewWSFJJrKyFu2Q==
+gQCpiRfXkGeXuCkzf2h/5JTLkiQS8gT6a3jD2NdGtSH2c45mQBf4tWg6QJjCN8u6
+EceMZWn1f7uLvdYlCZSEAUrGX9xyz48DxvLNWca5Eae2QAYvBKzJk5081NtESr/i
+Kp39KKCiPRAjZpRzkcmzStmqp9EuXZ/raPt9ov+UcIQKyA==
 -----END CERTIFICATE-----
 
 -----BEGIN CERTIFICATE-----
 MIIDyDCCAzGgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIy
-MjE4NTgxMFowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIy
+NzE4NDgwMVowgYMxDjAMBgNVBAMTBW90cENBMRMwEQYDVQQLEwpFcmxhbmcgT1RQ
 MRQwEgYDVQQKEwtFcmljc3NvbiBBQjELMAkGA1UEBhMCU0UxEjAQBgNVBAcTCVN0
 b2NraG9sbTElMCMGCSqGSIb3DQEJARYWcGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTCB
-nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuf9b4/hjJgt8CxqYHEue+NTrgxQw
-Yn8nNcPzMxE7htHgSx7Nu7Z/F+mFH4U2W45AA/TdQxLtOQbTX/6Dj4Wn6vheHeX9
-peLFxPeL/98ow/S8yzPyRPSaZfJqKy6hAa1xe3J0g6kNDSAEr6GxJxpACdyMWJe1
-AEapmXvyyuTs+KkCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
-BAQDAgEGMB0GA1UdDgQWBBScyOeU/+B4QTI3CVkGc01BRVFT/jCBuwYDVR0jBIGz
-MIGwgBSxWgGgo/BgNrdoLoNbHXCUkm7faaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
+nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuRhX/gLUC/Kx92Fd0QUQw8Q5CYxj
+GbvaU8Phih4o//6RQzkn/4YizMppI5ekWlJv6WA5wSLlFfBJiBGZfHBFdCPPLbyM
+RLBH2PmwrAdAfPPvi72STFHiAdJhzJ3W43IQtowsg6Ib881SCiNuek049yPHxr40
++IyI18sAlpcVO8MCAwEAAaOCAUUwggFBMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0P
+BAQDAgEGMB0GA1UdDgQWBBSqWapRVUT/81IQxMEWAzVoKDVRmzCBuwYDVR0jBIGz
+MIGwgBRDZ4k9Wb3gNC+z7Uali3HaEKznfaGBjKSBiTCBhjERMA8GA1UEAxMIZXJs
 YW5nQ0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFC
 MRIwEAYDVQQHEwlTdG9ja2hvbG0xCzAJBgNVBAYTAlNFMSUwIwYJKoZIhvcNAQkB
-FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAqNVszrN8ccUwIQYDVR0RBBowGIEW
+FhZwZXRlckBlcml4LmVyaWNzc29uLnNlggkAnuvy9cEq9pIwIQYDVR0RBBowGIEW
 cGV0ZXJAZXJpeC5lcmljc3Nvbi5zZTAhBgNVHRIEGjAYgRZwZXRlckBlcml4LmVy
-aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBALypm9U5VE/RJJh9Q7AqfhoftlUy
-nmspijCzlxgaMJchC5Oj4DIQqyVL8VEcoPBSnWpHrg1QL6Kftgld4OVrcaly8jL8
-LxniQ6SsdcSTZbeTo6WNC9RZTJS0MZSa5bsVfOw+9wJZQ/ojHUmPU5v8wciYx635
-AtoUOyI1+X0XUIf9
+aWNzc29uLnNlMA0GCSqGSIb3DQEBBQUAA4GBADpxhcENHRfk4aeRYXFEPDJl1O9J
+jgrmgEKn4Bt40X3oFgcW+C8syfKakJPiRAJiDrYtp4VJXHhiJ2bSbA3QCEHNALEC
+69ccLR0wZChFIIvg8BefmwXeGlylAjJZn2/RDqFhMsk3Cnr3Hywpu8KrqEj8hjmV
+0TXHaDDXwV+uAYwx
 -----END CERTIFICATE-----
 </diff>
      <filename>lib/ssl/examples/certs/etc/server/cacerts.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,21 +2,21 @@
 MIIDuDCCAyGgAwIBAgIBAjANBgkqhkiG9w0BAQUFADCBgzEOMAwGA1UEAxMFb3Rw
 Q0ExEzARBgNVBAsTCkVybGFuZyBPVFAxFDASBgNVBAoTC0VyaWNzc29uIEFCMQsw
 CQYDVQQGEwJTRTESMBAGA1UEBxMJU3RvY2tob2xtMSUwIwYJKoZIhvcNAQkBFhZw
-ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQxNTE4NTgxMFoXDTE5MDIyMjE4
-NTgxMFowgYQxDzANBgNVBAMTBnNlcnZlcjETMBEGA1UECxMKRXJsYW5nIE9UUDEU
+ZXRlckBlcml4LmVyaWNzc29uLnNlMB4XDTA5MDQyMDE4NDgwMVoXDTE5MDIyNzE4
+NDgwMVowgYQxDzANBgNVBAMTBnNlcnZlcjETMBEGA1UECxMKRXJsYW5nIE9UUDEU
 MBIGA1UEChMLRXJpY3Nzb24gQUIxCzAJBgNVBAYTAlNFMRIwEAYDVQQHEwlTdG9j
 a2hvbG0xJTAjBgkqhkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwgZ8w
-DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPIFjyuvCgnKHhxDkNsUWWWg4G8Rg9Qi
-pBw0M/cK3qt4m+5Ma73o3BCMwPSTkFgjtW1t/FLD3SFV1+HR2ZuIJBGE08AgLUVb
-4YB8WQBf9xRWbOZRhwThcwt2ajsA7/7Rnf1yskqlwjgCxAnd73N2KqeqjpZpoV+a
-kmmLBvhQSBc9AgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
-BgNVHQ4EFgQUhCUUqGE8qoo3AUCJjEiCMMxDPqowgbMGA1UdIwSBqzCBqIAUnMjn
-lP/geEEyNwlZBnNNQUVRU/6hgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
+DQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPcupyx1jYRlqcRwSwxQELI5iWZaS9Ut
+H42aaan/PzVODfiBhDPkiDcPR8YUK4i+mfnv2LmyPQbXGOyYXcTobthnTG6PkcYM
+dVVvhAtxfZAIb+cVbTfYVsrLaUN4xlOvVz0MxHch12bs5QIEqVvE3zW6DNkzlTI0
+QM8GDnHrJMPXAgMBAAGjggE3MIIBMzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIF4DAd
+BgNVHQ4EFgQUerwjQB24guX73zL9SAjaQk4Lbh8wgbMGA1UdIwSBqzCBqIAUqlmq
+UVVE//NSEMTBFgM1aCg1UZuhgYykgYkwgYYxETAPBgNVBAMTCGVybGFuZ0NBMRMw
 EQYDVQQLEwpFcmxhbmcgT1RQMRQwEgYDVQQKEwtFcmljc3NvbiBBQjESMBAGA1UE
 BxMJU3RvY2tob2xtMQswCQYDVQQGEwJTRTElMCMGCSqGSIb3DQEJARYWcGV0ZXJA
 ZXJpeC5lcmljc3Nvbi5zZYIBATAhBgNVHREEGjAYgRZwZXRlckBlcml4LmVyaWNz
 c29uLnNlMCEGA1UdEgQaMBiBFnBldGVyQGVyaXguZXJpY3Nzb24uc2UwDQYJKoZI
-hvcNAQEFBQADgYEAaP3lkXtBLcIHlOys0+0SmAHLktbhI1RWYCSBrDs6luEFBvQ9
-CBFxYblQcFSRtWBJvdw5nQP0JME+f/EkXzLOMO3N/qYAaJH2K177c/kO4VD6AFw0
-vOvhwXD5vBejJCZQiFCqH+nCcSrULsv9wfgY5eqx33/c0OxrY4ZKghME/ms=
+hvcNAQEFBQADgYEABm0VmaLf0Us0gRjWfLqsEKhjaNlGWKPiwv/3w71dkaeUoevM
+X3a+bhJdsEyUh+Z+TBvs3tFSzMApyfNZJIJjtnOOv2ALyVIny5EKBvEjRbVqMRO8
+3vsV055vOtZFzzi7G9Xb1IUlsi5MPUB9XEavHJywcCWJkMTmGP3R1wQD7aE=
 -----END CERTIFICATE-----</diff>
      <filename>lib/ssl/examples/certs/etc/server/cert.pem</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,15 @@
 -----BEGIN RSA PRIVATE KEY-----
-MIICXQIBAAKBgQDyBY8rrwoJyh4cQ5DbFFlloOBvEYPUIqQcNDP3Ct6reJvuTGu9
-6NwQjMD0k5BYI7VtbfxSw90hVdfh0dmbiCQRhNPAIC1FW+GAfFkAX/cUVmzmUYcE
-4XMLdmo7AO/+0Z39crJKpcI4AsQJ3e9zdiqnqo6WaaFfmpJpiwb4UEgXPQIDAQAB
-AoGABjFoOXjwK9H1NUnxUfnSU8xrEcyD8BC23FXlooOvsPmUG+PuudxUjUPcyCVi
-gy7evJ8c3s1OQkUdEhU5mUZBjfh3O+33GK1uKTKiKhnL2KwoNPlf7FO7yc3Vm7g9
-sQYu3QLnLgT+dk1MNMVYzSvl/LK+HQz3ghU4aZxqFCzQzS0CQQD+Yl39IsKuoIKr
-yDrRLkyahWI2LvRopjrgw9zCLKVp6AYIPKU3oFl1AHEhsNfQU4t86CDqFYrQAV+h
-hgOr/NwrAkEA848XJ0+3kTC23Lj1zWFcuSzM/IYO/2xBdADOnwZS3DPgP4jkcxiq
-OvLBj+M99uAGivNGd/sbqfnI6HuF1NdeNwJBAO+lY74RfS5d8Dw8yYw+/dOkTL2W
-xpG/6D/OxK34uWxoNSaVW2BoI15iKDIBE48i5YmqdTeRS9BhOuJECjmAYTkCQGmm
-DBkVTz8/rlKYOKdaMGpysIhpbmAFiW7UWsxIZfD237Mvokj6zfy8CJJttBc+nhfv
-5wVse1eD7k5KJodo1IkCQQDnlymggE4RUqN5f56aBjUcxzlJbK374jCg/oo8qJz5
-vgfWcGqpnziXLDcpoIsomA0VEX76qFQ4hGkybdgBWrMQ
+MIICXAIBAAKBgQD3LqcsdY2EZanEcEsMUBCyOYlmWkvVLR+Nmmmp/z81Tg34gYQz
+5Ig3D0fGFCuIvpn579i5sj0G1xjsmF3E6G7YZ0xuj5HGDHVVb4QLcX2QCG/nFW03
+2FbKy2lDeMZTr1c9DMR3Iddm7OUCBKlbxN81ugzZM5UyNEDPBg5x6yTD1wIDAQAB
+AoGBAOvNnb1UB0Uelu3HElEUsFjVerYhveYHveogPFzoGyyG4d0H8U5v3WJpOVdF
+NqKk8c71eBLubjlwSV6rnAiUk+gN7AFXdtmxy0J5tmJAQT/ZrctNcPZ5FiAJ2yaH
+EnVu6MBoLYYHXPPzNVFydnzA3Rxm/Etto9MKWAlYghqcf6DBAkEA/YRtWqUqNGBQ
+FT9a7voVtDAE6kGql3D3N2qUUftHtRK3r5TerbJo+7xBOSm5c7gyzece9no8W2CE
+NnvDrcArxQJBAPmaV//8wOPjJYAIwn/QKasIqqoFxC3x8TDj63LzSY5fMDkxokLM
+qgRAavA4UvsfnpHEOzJ2UXo6IYi8shxlnusCQAQrh3j0Oot+AhM3ZZGEv5KlL4+C
+4QF4tDhPIn1uurE5y5exxS/qPVvWruP30bsbjopggNvhCtkd707OHlvfS1kCQFxl
+ahX0tmKlfwg6NeWiZQpPFv4BTHHFkgcLF+lhbeUqD2vcl7gqkvUn824hK3aSadyD
+y3YOnnKkei1nzHb+lykCQDtGT+pCbsK8AnIaoHyZDZ9E+vyk6OhZovCXC/2UAhxM
+vhh0zJVbhnwn/YIQHJ4n/5UQpCRC+VAgXZQAiJk0l9Q=
 -----END RSA PRIVATE KEY-----</diff>
      <filename>lib/ssl/examples/certs/etc/server/key.pem</filename>
    </modified>
    <modified>
      <diff>@@ -2,11 +2,11 @@
 MIIBxTCCAS4CAQAwgYQxDzANBgNVBAMTBnNlcnZlcjETMBEGA1UECxMKRXJsYW5n
 IE9UUDEUMBIGA1UEChMLRXJpY3Nzb24gQUIxEjAQBgNVBAcTCVN0b2NraG9sbTEL
 MAkGA1UEBhMCU0UxJTAjBgkqhkiG9w0BCQEWFnBldGVyQGVyaXguZXJpY3Nzb24u
-c2UwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPIFjyuvCgnKHhxDkNsUWWWg
-4G8Rg9QipBw0M/cK3qt4m+5Ma73o3BCMwPSTkFgjtW1t/FLD3SFV1+HR2ZuIJBGE
-08AgLUVb4YB8WQBf9xRWbOZRhwThcwt2ajsA7/7Rnf1yskqlwjgCxAnd73N2Kqeq
-jpZpoV+akmmLBvhQSBc9AgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQDL4t74YRuE
-FG6NUoLx0qUPNGYozX0QGV07ZvySCK19UzXVuFOoOcH+ACmBiWaiqzfwe+lT7I/i
-LjVqOyehPqaoKx1eZwUFe+UyHEiYfDg0iB+5PrRVoVi42YDWBwyQDRzT2v0YWZCh
-XkVdRkA+0QXdTNxkBC8+E+MglQYC1A6IAg==
+c2UwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPcupyx1jYRlqcRwSwxQELI5
+iWZaS9UtH42aaan/PzVODfiBhDPkiDcPR8YUK4i+mfnv2LmyPQbXGOyYXcTobthn
+TG6PkcYMdVVvhAtxfZAIb+cVbTfYVsrLaUN4xlOvVz0MxHch12bs5QIEqVvE3zW6
+DNkzlTI0QM8GDnHrJMPXAgMBAAGgADANBgkqhkiG9w0BAQUFAAOBgQBuAaTx4OVN
+cfBN+JFShZ/DXfhZAIGiqaCUUb7nIiD5tdJXdXv58j39/TbtDoi6hD0gBU0RNaxT
+Ktzw6tsrUgGCgZbfbQvW7H3ryYlWlX4vHmlRrMDFHebBxowDMcQNbVychDTlziou
+hD7zRLOk7xCWp8Fp+ZoObAe3MhuxYwjz7w==
 -----END CERTIFICATE REQUEST-----</diff>
      <filename>lib/ssl/examples/certs/etc/server/req.pem</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/examples/ebin/client_server.beam</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@
 %% 		`asn1rt_check'
 %% 		`asn1rt_driver_handler'
 %% 
-%% Created by Igor 2009-04-15, 20:57:53.
+%% Created by Igor 2009-04-20, 20:47:44.
 %% 
 
 -module('OTP-PKIX').
@@ -732,15 +732,15 @@
 %%&lt;&lt;&lt;              [ber_bin_v2, report_errors,
 %%&lt;&lt;&lt;               {cwd,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssl/pkix&quot;},
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssl/pkix&quot;},
 %%&lt;&lt;&lt;               {outdir,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssl/pkix&quot;},
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssl/pkix&quot;},
 %%&lt;&lt;&lt;               inline, asn1config, noobj, optimize, compact_bit_string,
 %%&lt;&lt;&lt;               der, {i, &quot;.&quot;},
 %%&lt;&lt;&lt;               {i,
 %%&lt;&lt;&lt;                &quot;/net/shelob/ldisk/daily_build/otp_prebuild_r1&quot;
-%%&lt;&lt;&lt;                &quot;3b.2009-04-15_20/otp_src_R13B/lib/ssl/pkix&quot;}]}]).
+%%&lt;&lt;&lt;                &quot;3b.2009-04-20_20/otp_src_R13B/lib/ssl/pkix&quot;}]}]).
 
 encoding_rule() -&gt; ber_bin_v2.
 </diff>
      <filename>lib/ssl/pkix/OTP-PKIX.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/ssl/pkix/mk_ssl_pkix_oid.beam</filename>
    </modified>
    <modified>
      <diff>@@ -427,7 +427,7 @@ ok&lt;/pre&gt;
 	    less than or equal to 255, otherwise it is masked with 16#FF:&lt;/p&gt;
 &lt;pre&gt;
 1&gt; &lt;input&gt;io:fwrite(&quot;~tc~n&quot;,[1024]).&lt;/input&gt;
-\{2000}
+\x{400}
 ok
 2&gt; &lt;input&gt;io:fwrite(&quot;~c~n&quot;,[1024]).&lt;/input&gt;
 ^@
@@ -479,7 +479,7 @@ ok&lt;/pre&gt;
           &lt;p&gt;A list with integers larger than 255 is considered an error if the Unicode translation modifier is not given:&lt;/p&gt;
 &lt;pre&gt;
 1&gt; &lt;input&gt;io:fwrite(&quot;~ts~n&quot;,[[1024]]).&lt;/input&gt;
-\{2000}
+\x{400}
 ok
 2&gt; io:fwrite(&quot;~s~n&quot;,[[1024]]).
 ** exception exit: {badarg,[{io,format,[&amp;lt;0.26.0&amp;gt;,&quot;~s~n&quot;,[[1024]]]},</diff>
      <filename>lib/stdlib/doc/src/io.xml</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,68 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the STDLIB application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;STDLIB 1.16.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;The documentation of &lt;c&gt;dets:open_file/1&lt;/c&gt; now
+	    states that the file is repaired if it has not been
+	    properly closed. (Thanks to Ulf Wiger.)&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7895&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;The Erlang scanner no longer returns the text of
+	    tokens when the start location is a pair of a line and
+	    column unless the new option &lt;c&gt;text&lt;/c&gt; is supplied
+	    (incompatibility with R13A).&lt;/p&gt; &lt;p&gt;There are new
+	    functions to access the attributes of tokens:
+	    &lt;c&gt;attributes_info/1,2&lt;/c&gt; and
+	    &lt;c&gt;set_attribute/3&lt;/c&gt;.&lt;/p&gt;
+          &lt;p&gt;
+	    *** POTENTIAL INCOMPATIBILITY ***&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7892 Aux Id: OTP-7810 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Several glitches and performance issues in the Unicode
+	    and I/O-system implementation of R13A have been
+	    corrected.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7896 Aux Id: OTP-7648 OTP-7887 &lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    The type spec of filelib:wildcard/2 has been corrected.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7915&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+	    &lt;p&gt;New functions: &lt;c&gt;gb_sets:is_disjoint/2&lt;/c&gt;,
+	    &lt;c&gt;ordsets:is_disjoint/2&lt;/c&gt;, and
+	    &lt;c&gt;gb_sets:is_disjoint/2&lt;/c&gt;.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7947&lt;/p&gt;
+        &lt;/item&gt;
+        &lt;item&gt;
+	    &lt;p&gt;The function &lt;c&gt;gb_trees:map/2&lt;/c&gt; which was added in
+	    R13A is now documented.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7948&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;STDLIB 1.16&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;</diff>
      <filename>lib/stdlib/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff>@@ -106,19 +106,15 @@ Bin4 = &amp;lt;&amp;lt;&quot;Hello&quot;/utf16&amp;gt;&amp;gt;,&lt;/code&gt;
 &lt;p&gt;It is convenient to be able to write a list of Unicode characters in the string syntax. However, the language specifies strings as being in the ISO-latin-1 character set which the compiler tool chain as well as many other tools expect.&lt;/p&gt;
 &lt;p&gt;Also the source code is (for now) still expected to be written using the ISO-latin-1 character set, why Unicode characters beyond that range cannot be entered in string literals.&lt;/p&gt;
 &lt;p&gt;To make it easier to enter Unicode characters in the shell, it allows strings with Unicode characters on input, immediately converting them to regular lists of integers. They will, by the evaluator etc be viewed as if they were input using the regular list syntax, which is - in the end - how the language actually treats them. They will in the same way not be output as strings by i.e &lt;c&gt;io:write/2&lt;/c&gt; or &lt;c&gt;io:format/3&lt;/c&gt; unless the format string supplied to &lt;c&gt;io:format&lt;/c&gt; uses the Unicode translation modifier (which we will talk about later).&lt;/p&gt;
-&lt;p&gt;For source code, there is an extension to the \OOO (backslash followed by three octal numbers), namely \{O ...} (a backslash followed by a left curly bracket, any number of octal digits and a terminating right curly bracket). This allows for entering characters of any codepoint literally in a string. The string is immediately converted into a list by the scanner however, which is obvious when calling it directly:&lt;/p&gt;
+&lt;p&gt;For source code, there is an extension to the \OOO (backslash followed by three octal numbers) and \xHH (backslash followed by 'x', followed by two hexadecimal characters) syntax, namely \x{H ...} (a backslash followed by an 'x', followed by left curly bracket, any number of hexadecimal digits and a terminating right curly bracket). This allows for entering characters of any codepoint literally in a string. The string is immediately converted into a list by the scanner however, which is obvious when calling it directly:&lt;/p&gt;
 &lt;pre&gt;
 1&gt; &lt;input&gt;erl_scan:string(&quot;\&quot;X\&quot;.&quot;).&lt;/input&gt;
 {ok,[{string,1,&quot;X&quot;},{dot,1}],1}
-2&gt; &lt;input&gt;erl_scan:string(&quot;\&quot;\{2000}\&quot;.&quot;).&lt;/input&gt;
+2&gt; &lt;input&gt;erl_scan:string(&quot;\&quot;\x{400}\&quot;.&quot;).&lt;/input&gt;
 {ok,[{'[',1},{integer,1,1024},{']',1},{dot,1}],1}&lt;/pre&gt;
-&lt;p&gt;With a similar syntax, hexadecimal constants can be entered with the syntax \x{H ...}:&lt;/p&gt;
+&lt;p&gt;Character literals, or rather integers representing Unicode codepoints can be expressed in a similar way using $\x{H ...}:&lt;/p&gt;
 &lt;pre&gt;
-3&gt; &lt;input&gt;erl_scan:string(&quot;\&quot;\x{400}\&quot;.&quot;).&lt;/input&gt;
-{ok,[{'[',1},{integer,1,1024},{']',1},{dot,1}],1}&lt;/pre&gt;
-&lt;p&gt;Character literals, or rather integers representing Unicode codepoints can be expressed in a similar way using $\{O ...} or $\x{H ...}:&lt;/p&gt;
-&lt;pre&gt;
-4&gt; &lt;input&gt;$\{2000}.&lt;/input&gt;
+4&gt; &lt;input&gt;$\x{400}.&lt;/input&gt;
 1024&lt;/pre&gt;
 &lt;p&gt;This also is a translation by the scanner:&lt;/p&gt;
 &lt;pre&gt;
@@ -240,7 +236,7 @@ ok&lt;/pre&gt;
 &lt;p&gt;As long as the data is always lists, the &quot;t&quot; modifier can be used for any string, but when binary data is involved, care must be taken to make the tight choice of formatting characters.&lt;/p&gt;
 &lt;p&gt;The function &lt;c&gt;format&lt;/c&gt; in &lt;c&gt;io_lib&lt;/c&gt; behaves similarly. This function is defined to return a deep list of characters and the output could easily be converted to binary data for outputting on a device of any kind by a simple &lt;c&gt;erlang:list_to_binary&lt;/c&gt;. When the translation modifier is used, the list can however contain characters that cannot be stored in one byte. The call to &lt;c&gt;erlang:list_to_binary&lt;/c&gt; will in that case fail. However, if the io_server you want to communicate with is Unicode-aware, the list returned can still be used directly:&lt;/p&gt;
 &lt;image file=&quot;ushell3&quot;&gt;&lt;icaption&gt;io_lib:format with Unicode translation&lt;/icaption&gt;&lt;/image&gt;
-&lt;p&gt;The Unicode string is returned as a Unicode list, why the return value of &lt;c&gt;io_lib:format&lt;/c&gt; no longer qualifies as a regular Erlang string (the function &lt;seealso marker=&quot;stdlib:io_lib#deep_char_list/1&quot;&gt;io_lib:deep_char_list&lt;/seealso&gt; will, as an example, return &lt;c&gt;false&lt;/c&gt;). The Unicode list is however valid input to the &lt;seealso marker=&quot;stdlib:io#put_chars/2&quot;&gt;io:put_chars&lt;/seealso&gt; function, so data can be output on any Unicode capable device anyway. If the device is a terminal, characters will be output in the \{O ...} format if encoding is &lt;c&gt;latin1&lt;/c&gt; otherwise in UTF-8 (for the non-interactive terminal - &quot;oldshell&quot; or &quot;noshell&quot;) or whatever is suitable to show the character properly (for an interactive terminal - the regular shell). The bottom line is that you can always send Unicode data to the &lt;c&gt;standard_io&lt;/c&gt; device. Files will however only accept Unicode codepoints beyond ISO-latin-1 if &lt;c&gt;encoding&lt;/c&gt; is set to something else than &lt;c&gt;latin1&lt;/c&gt;.&lt;/p&gt;
+&lt;p&gt;The Unicode string is returned as a Unicode list, why the return value of &lt;c&gt;io_lib:format&lt;/c&gt; no longer qualifies as a regular Erlang string (the function &lt;seealso marker=&quot;stdlib:io_lib#deep_char_list/1&quot;&gt;io_lib:deep_char_list&lt;/seealso&gt; will, as an example, return &lt;c&gt;false&lt;/c&gt;). The Unicode list is however valid input to the &lt;seealso marker=&quot;stdlib:io#put_chars/2&quot;&gt;io:put_chars&lt;/seealso&gt; function, so data can be output on any Unicode capable device anyway. If the device is a terminal, characters will be output in the \x{H ...} format if encoding is &lt;c&gt;latin1&lt;/c&gt; otherwise in UTF-8 (for the non-interactive terminal - &quot;oldshell&quot; or &quot;noshell&quot;) or whatever is suitable to show the character properly (for an interactive terminal - the regular shell). The bottom line is that you can always send Unicode data to the &lt;c&gt;standard_io&lt;/c&gt; device. Files will however only accept Unicode codepoints beyond ISO-latin-1 if &lt;c&gt;encoding&lt;/c&gt; is set to something else than &lt;c&gt;latin1&lt;/c&gt;.&lt;/p&gt;
 &lt;/section&gt;
 &lt;section&gt;
 &lt;title&gt;Heuristic identification of UTF-8&lt;/title&gt;</diff>
      <filename>lib/stdlib/doc/src/unicode_usage.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/array.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/base64.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/beam_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/c.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/calendar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dets_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dets_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dets_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dets_v8.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dets_v9.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/dict.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/digraph.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/digraph_utils.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/edlin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/edlin_expand.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/epp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_bits.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_compile.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_eval.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_expand_records.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_internal.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_lint.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_parse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_posix_msg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_pp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_scan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/erl_tar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/error_logger_file_h.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/error_logger_tty_h.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/escript.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/ets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/eval_bits.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/file_sorter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/filelib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/filename.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/gb_sets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/gb_trees.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/gen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/gen_event.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/gen_fsm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/gen_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/io.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/io_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/io_lib_format.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/io_lib_fread.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/io_lib_pretty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/lists.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/log_mf_h.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/math.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/ms_transform.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/orddict.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/ordsets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/otp_internal.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/pg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/pool.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/proc_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/proplists.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/qlc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/qlc_pt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/queue.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/random.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/re.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/regexp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/sets.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/shell.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/shell_default.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/slave.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/sofs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/string.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/supervisor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/supervisor_bridge.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/sys.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/timer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/unicode.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/win32reg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/stdlib/ebin/zip.beam</filename>
    </modified>
    <modified>
      <diff>@@ -529,7 +529,7 @@ get_attribute(L, Name) -&gt;
 get_attributes(L) -&gt;
     erl_scan:attributes_info(L).
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/stdlib/src/erl_parse.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/epp_dodger.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/erl_comment_scan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/erl_prettypr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/erl_recomment.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/erl_syntax.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/erl_syntax_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/erl_tidy.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/igor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/syntax_tools/ebin/prettypr.beam</filename>
    </modified>
    <modified>
      <diff>@@ -32,6 +32,21 @@
     &lt;file&gt;notes.xml&lt;/file&gt;
   &lt;/header&gt;
 
+&lt;section&gt;&lt;title&gt;Test_Server 3.3.1&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+          &lt;p&gt;
+	    Minor updates and corrections.&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7897&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Test_Server 3.3&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/test_server/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/erl2html2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/test_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/test_server_ctrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/test_server_h.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/test_server_line.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/test_server_node.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/test_server_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_autoconf_vxworks.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_autoconf_win32.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_erl_config.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_install.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_make.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_reports.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/ts_run.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/test_server/ebin/vxworks_client.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/toolbar/ebin/canvasbutton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/toolbar/ebin/toolbar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/toolbar/ebin/toolbar_graphics.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/toolbar/ebin/toolbar_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/toolbar/ebin/toolbar_toolconfig.beam</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,22 @@
   &lt;/header&gt;
   &lt;p&gt;This document describes the changes made to the Tools application.&lt;/p&gt;
 
+&lt;section&gt;&lt;title&gt;Tools 2.6.4&lt;/title&gt;
+
+    &lt;section&gt;&lt;title&gt;Fixed Bugs and Malfunctions&lt;/title&gt;
+      &lt;list&gt;
+        &lt;item&gt;
+	    &lt;p&gt;&lt;c&gt;cover&lt;/c&gt; now properly escapes greater-than and
+	    less-than characters in comments in HTML reports. (Thanks
+	    to Magnus Henoch.)&lt;/p&gt;
+          &lt;p&gt;
+	    Own Id: OTP-7939&lt;/p&gt;
+        &lt;/item&gt;
+      &lt;/list&gt;
+    &lt;/section&gt;
+
+&lt;/section&gt;
+
 &lt;section&gt;&lt;title&gt;Tools 2.6.3&lt;/title&gt;
 
     &lt;section&gt;&lt;title&gt;Improvements and New Features&lt;/title&gt;</diff>
      <filename>lib/tools/doc/src/notes.xml</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/cover.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/cover_web.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/cprof.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/eprof.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/fprof.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/instrument.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/make.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/tags.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref_base.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref_compiler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref_parser.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref_reader.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref_scanner.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tools/ebin/xref_utils.beam</filename>
    </modified>
    <modified>
      <diff>@@ -198,7 +198,7 @@ name_it(intersection)  -&gt; ' * ';
 name_it(difference)    -&gt; ' - ';
 name_it(Name) -&gt; Name.   
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/tools/src/xref_parser.erl</filename>
    </modified>
    <modified>
      <diff>@@ -17,5 +17,3 @@
 # %CopyrightEnd%
 
 TOOLS_VSN = 2.6.4
-
-TICKETS = OTP-7831</diff>
      <filename>lib/tools/vsn.mk</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_comm_func.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_db.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_db_search.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_db_sort.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_ets_rpc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_etsread.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_info.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_io_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_io_lib_format.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_io_lib_pretty.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_ip.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_main.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_mnesia_rpc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_new_table.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_nodewin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pb.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pb_funcs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pc_graph_ctrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pc_menu_handling.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pd_display.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pd_frames.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pd_scale.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pg.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pg_gridfcns.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_poll_dialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pw.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_pw_window.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_rec_edit.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_table_owner.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/tv/ebin/tv_utils.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,8 +1,8 @@
 % This is an -*- erlang -*- file.
 
 {application, typer,
- [{description, &quot;TYPe annotator for ERlang programs, version 0.1.6&quot;},
-  {vsn, &quot;0.1.6&quot;},
+ [{description, &quot;TYPe annotator for ERlang programs, version 0.1.7&quot;},
+  {vsn, &quot;0.1.7&quot;},
   {modules, [typer,
 	     typer_annotator,
 	     typer_info,</diff>
      <filename>lib/typer/ebin/typer.app</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-{&quot;0.1.6&quot;,[],[]}.
+{&quot;0.1.7&quot;,[],[]}.</diff>
      <filename>lib/typer/ebin/typer.appup</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/typer/ebin/typer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/typer/ebin/typer_annotator.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/typer/ebin/typer_info.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/typer/ebin/typer_map.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/typer/ebin/typer_options.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/typer/ebin/typer_preprocess.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-TYPER_VSN = 0.1.6
+TYPER_VSN = 0.1.7</diff>
      <filename>lib/typer/vsn.mk</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/webtool/ebin/webtool.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/webtool/ebin/webtool_sup.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/gl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/glu.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wx.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAcceleratorEntry.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAcceleratorTable.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxArtProvider.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAuiDockArt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAuiManager.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAuiNotebook.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAuiPaneInfo.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxAuiTabArt.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBitmap.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBitmapButton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBitmapDataObject.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBoxSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBrush.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBufferedDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxBufferedPaintDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxButton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCalendarCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCalendarDateAttr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCalendarEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCaret.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCheckBox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCheckListBox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxChildFocusEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxChoice.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxClientDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxClipboard.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCloseEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxColourData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxColourDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxColourPickerCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxColourPickerEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxComboBox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCommandEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxContextMenuEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxControl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxControlWithItems.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxCursor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDataObject.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDateEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDatePickerCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDirDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDirPickerCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxDisplayChangedEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxEraseEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxEvtHandler.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFileDataObject.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFileDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFileDirPickerEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFilePickerCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFindReplaceData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFindReplaceDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFlexGridSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFocusEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFont.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFontData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFontDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFontPickerCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFontPickerEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxFrame.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGBSizerItem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGLCanvas.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGauge.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGenericDirCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsBrush.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsContext.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsFont.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsMatrix.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsObject.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsPath.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsPen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGraphicsRenderer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGrid.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGridBagSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGridCellAttr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGridCellEditor.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGridCellRenderer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGridEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxGridSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxHelpEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxHtmlEasyPrinting.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxIcon.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxIconBundle.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxIconizeEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxIdleEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxImage.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxImageList.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxJoystickEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxKeyEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxLayoutAlgorithm.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxListBox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxListCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxListEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxListItem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxListView.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMDIChildFrame.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMDIClientWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMDIParentFrame.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMask.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMaximizeEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMemoryDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMenu.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMenuBar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMenuEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMenuItem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMessageDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMiniFrame.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMirrorDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMouseCaptureChangedEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMouseEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMoveEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxMultiChoiceDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxNavigationKeyEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxNcPaintEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxNotebook.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxNotebookEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxNotifyEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPageSetupDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPageSetupDialogData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPaintDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPaintEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPalette.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPaletteChangedEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPanel.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPasswordEntryDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPickerBase.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPostScriptDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPreviewCanvas.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPreviewControlBar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPreviewFrame.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPrintData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPrintDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPrintDialogData.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPrintPreview.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPrinter.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxPrintout.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxProgressDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxQueryNewPaletteEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxRadioBox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxRadioButton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxRegion.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSashEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSashLayoutWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSashWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxScreenDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxScrollBar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxScrollEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxScrollWinEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxScrolledWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSetCursorEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxShowEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSingleChoiceDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSizeEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSizerFlags.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSizerItem.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSlider.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSpinButton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSpinCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSpinEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSplashScreen.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSplitterEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSplitterWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStaticBitmap.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStaticBox.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStaticBoxSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStaticLine.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStaticText.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStatusBar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStdDialogButtonSizer.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStyledTextCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxStyledTextEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxSysColourChangedEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTextAttr.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTextCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTextDataObject.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTextEntryDialog.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxToggleButton.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxToolBar.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxToolTip.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTopLevelWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTreeCtrl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxTreeEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxUpdateUIEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxWindow.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxWindowCreateEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxWindowDC.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxWindowDestroyEvent.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxXmlResource.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wx_misc.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wx_object.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxe_master.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxe_server.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/ebin/wxe_util.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/simple/hello.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/simple/hello2.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/simple/menu.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/simple/minimal.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/sudoku/sudoku.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/sudoku/sudoku_board.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/sudoku/sudoku_game.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/sudoku/sudoku_gui.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/wx/examples/xrc/xrc.beam</filename>
    </modified>
    <modified>
      <diff>@@ -213,14 +213,6 @@ wx_misc(Config) -&gt;
     %% Don't hold home down when testing :-)
     ?m(false, wx_misc:getKeyState(?WXK_HOME)), 
 
-    wx_misc:shell([{command,&quot;echo TESTING close the popup shell&quot;}]),
-    case wx_test_lib:user_available(Config) of
-	true -&gt;
-	    wx_misc:shell();
-	false -&gt;
-	    %% Don't want to spawn a shell if no user	   
-	    skip %% is available
-    end,
     
     %% wx:shutdown()  %% How do you test this?
 
@@ -228,11 +220,21 @@ wx_misc(Config) -&gt;
 	{win32, _} -&gt; %% These hangs when running automatic tests
 	    skip;     %% through ssh on windows. Works otherwise
 	_ -&gt; 
-	    ?m(false, wx_misc:isBusy()),
-	    ?m(ok, wx_misc:beginBusyCursor([])),
-	    ?m(true, wx_misc:isBusy()),
-	    ?m(ok, wx_misc:endBusyCursor())
+	    wx_misc:shell([{command,&quot;echo TESTING close the popup shell&quot;}])
+    end,
+
+    case wx_test_lib:user_available(Config) of
+	true -&gt;
+	    wx_misc:shell();
+	false -&gt;
+	    %% Don't want to spawn a shell if no user	   
+	    skip %% is available
     end,
+
+    ?m(false, wx_misc:isBusy()),
+    ?m(ok, wx_misc:beginBusyCursor([])),
+    ?m(true, wx_misc:isBusy()),
+    ?m(ok, wx_misc:endBusyCursor()),
     
     %%?m(true, is_boolean(wx_misc:setDetectableAutoRepeat(true)),
     Curr  = wx_misc:getCurrentId(),</diff>
      <filename>lib/wx/test/wx_basic_SUITE.erl</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_b64Bin.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_b64Bin_scan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_eventp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_html.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_otpsgml.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_regexp.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_scan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_sgml.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_simple.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_text.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_ucs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_uri.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_validate.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xlate.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xml.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xpath.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xpath_lib.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xpath_parse.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xpath_pred.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xpath_scan.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xs.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xsd.beam</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>lib/xmerl/ebin/xmerl_xsd_type.beam</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 -module(xmerl_b64Bin).
 -export([parse/1, parse_and_scan/1, format_error/1]).
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/xmerl/src/xmerl_b64Bin.erl</filename>
    </modified>
    <modified>
      <diff>@@ -12,7 +12,7 @@ value({Token, _Line}) -&gt;
 value({_Token, _Line, Value}) -&gt;
 	Value.
 
--file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-15_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
+-file(&quot;/net/shelob/ldisk/daily_build/otp_prebuild_r13b.2009-04-20_20/otp_src_R13B/bootstrap/lib/parsetools/include/yeccpre.hrl&quot;, 0).
 %%
 %% %CopyrightBegin%
 %% </diff>
      <filename>lib/xmerl/src/xmerl_xpath_parse.erl</filename>
    </modified>
    <modified>
      <diff>@@ -839,10 +839,12 @@
 ./lib/eunit/ebin/eunit_autoexport.beam
 ./lib/eunit/ebin/eunit_data.beam
 ./lib/eunit/ebin/eunit_lib.beam
+./lib/eunit/ebin/eunit_listener.beam
 ./lib/eunit/ebin/eunit_proc.beam
 ./lib/eunit/ebin/eunit_serial.beam
 ./lib/eunit/ebin/eunit_server.beam
 ./lib/eunit/ebin/eunit_striptests.beam
+./lib/eunit/ebin/eunit_surefire.beam
 ./lib/eunit/ebin/eunit_test.beam
 ./lib/eunit/ebin/eunit_tests.beam
 ./lib/eunit/ebin/eunit_tty.beam</diff>
      <filename>prebuilt.files</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>13ee3d5fdd8c25c977459df95afafbc1954c0be2</id>
    </parent>
  </parents>
  <author>
    <name>Geoff Cant</name>
    <email>nem@lisp.geek.nz</email>
  </author>
  <url>http://github.com/mfoemmel/erlang-otp/commit/1cf13f104b3953cc69f62a65581d58b03b27a13e</url>
  <id>1cf13f104b3953cc69f62a65581d58b03b27a13e</id>
  <committed-date>2009-04-23T03:01:00-07:00</committed-date>
  <authored-date>2009-04-23T03:01:00-07:00</authored-date>
  <message>importing R13B</message>
  <tree>094697972b8d78aafe049950280e8992b2f6e7a7</tree>
  <committer>
    <name>Geoff Cant</name>
    <email>nem@lisp.geek.nz</email>
  </committer>
</commit>
