]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Fix bacula_cats.def for new db_escape_string().
authorKern Sibbald <kern@sibbald.com>
Fri, 14 Sep 2007 16:56:40 +0000 (16:56 +0000)
committerKern Sibbald <kern@sibbald.com>
Fri, 14 Sep 2007 16:56:40 +0000 (16:56 +0000)
kes  Increase size of name string when FD making connection to SD.
     May fix bug #953.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5556 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/stored/dircmd.c
bacula/src/version.h
bacula/src/win32/cats/bacula_cats.def
bacula/technotes-2.3

index ccc54dc16681e12784e333ff69a344e1f9f146d7..cd0153e8f57f8b839841ced014c4f4714d99cfae 100644 (file)
@@ -148,7 +148,7 @@ void *handle_connection_request(void *arg)
    int i;
    bool found, quit;
    int bnet_stat = 0;
-   char name[MAX_NAME_LENGTH];
+   char name[500];
 
    if (bs->recv() <= 0) {
       Emsg0(M_ERROR, 0, _("Connection request failed.\n"));
@@ -159,7 +159,7 @@ void *handle_connection_request(void *arg)
    /*
     * Do a sanity check on the message received
     */
-   if (bs->msglen < 25 || bs->msglen > (int)sizeof(name)+100) {
+   if (bs->msglen < 25 || bs->msglen > (int)sizeof(name)) {
       Dmsg1(000, "<filed: %s", bs->msg);
       Emsg1(M_ERROR, 0, _("Invalid connection. Len=%d\n"), bs->msglen);
       bs->close();
index 4cf4e1e2aad5514f3936b3463f5dc2befa57ec79..55e6c1b621d1c2a774eb97299d0e72cb3c9d28f3 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "2.3.4"
-#define BDATE   "12 September 2007"
-#define LSMDATE "12Sep07"
+#define BDATE   "14 September 2007"
+#define LSMDATE "14Sep07"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2007"       /* year for copyright messages in progs */
index 04f56127a7954f1411aedb72c63034e151c0b586..671872631fa058696bb44901ef3b833f2c0b8ac1 100644 (file)
@@ -93,7 +93,7 @@ _Z28db_add_digest_to_file_recordP3JCRP4B_DBjPci
 _Z11db_get_typev\r
 _Z12db_sql_queryP4B_DBPKcPFiPviPPcES3_\r
 _Z13db_next_indexP3JCRP4B_DBPcS3_\r
-_Z16db_escape_stringPcS_i\r
+_Z16db_escape_stringP3JCRP4B_DBPcS3_i\r
 _Z16db_init_databaseP3JCRPKcS2_S2_S2_iS2_i\r
 _Z16db_open_databaseP3JCRP4B_DB\r
 _Z17db_close_databaseP3JCRP4B_DB\r
index 658c56473e818a2c1acee44857f4eb2776f17cbc..3e8c0d755c4ccdb976419c20331c97ed80249db8 100644 (file)
@@ -1,6 +1,10 @@
               Technical notes on version 2.3
 
 General:
+14Sep07
+kes  Fix bacula_cats.def for new db_escape_string().
+kes  Increase size of name string when FD making connection to SD.
+     May fix bug #953.
 13Sep07
 kes  Add code to help Dan debug 2drive-incremental-2disk test.
 kes  Add code to try to fix bug #908.