http://www.microsoft.com/technet/itshowcase/content/exchbkup.mspx
 
 Priority:
+- Implement USB keyboard support in rescue CD.
 - Remove all install temp files in Win32 PLUGINSDIR.
 - Audit retention periods to make sure everything is 64 bit.
 - Use E'xxx' to escape PostgreSQL strings.
 
    Dmsg0(500, "my_postgresql_fetch_row start\n");
 
    if (!mdb->row || mdb->row_size < mdb->num_fields) {
+      int num_fields = mdb->num_fields;
       Dmsg1(500, "we have need space of %d bytes\n", sizeof(char *) * mdb->num_fields);
 
       if (mdb->row) {
          Dmsg0(500, "my_postgresql_fetch_row freeing space\n");
          free(mdb->row);
       }
-      mdb->row = (POSTGRESQL_ROW) malloc(sizeof(char *) * mdb->num_fields);
-      mdb->row_size = mdb->num_fields;
+      num_fields += 20;                  /* add a bit extra */
+      mdb->row = (POSTGRESQL_ROW)malloc(sizeof(char *) * num_fields);
+      mdb->row_size = num_fields;
 
       // now reset the row_number now that we have the space allocated
       mdb->row_number = 0;
 
 
 #undef  VERSION
 #define VERSION "2.1.29"
-#define BDATE   "26 July 2007"
-#define LSMDATE "26Jul07"
+#define BDATE   "28 July 2007"
+#define LSMDATE "28Jul07"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2007"       /* year for copyright messages in progs */
 
 ; add pdf manual and menu shortcut\r
 ;\r
 ; Robert Nelson May 15 2006\r
-; Pretty much rewritten\r
+; Added server installs and implemented Microsoft install locations\r
 ; Use LogicLib.nsh\r
 ; Added Bacula-SD and Bacula-DIR\r
 ; Replaced ParameterGiven with standard GetOptions\r
-\r
+;\r
+; Version $Id$\r
 ;\r
 ; Command line options:\r
 ;\r
 ; /service    - \r
 ; /start\r
+;\r
+; netsh firewall add portopening protocol=tcp port=9102 name="Bacula-FD"\r
+\r
 \r
 !define PRODUCT "Bacula"\r
 \r
 
               Technical notes on version 2.1
 
 General:
+28Jul07
+kes  Correct seg fault in postgresql when first operation returns no
+     rows.  Fixes Dirks File browser problem seg fault with bat.
 25Jul07
 kes  Apply patch from Felix Schwarz <Felix.Schwarz@web.de> that allows
      building wxconsole on Fedora 7 with wxWidgets 2.8 (it works with