From: Kern Sibbald Date: Thu, 10 Sep 2009 13:38:44 +0000 (+0200) Subject: Add patch for more SD info fix X-Git-Tag: Release-5.0.0~316^2~9 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=594955e5a7a12f464930a8c6cb3fab8e4882025e;p=bacula%2Fbacula Add patch for more SD info fix --- diff --git a/bacula/patches/3.0.2-Add-more-info-when-SD-connection-refused.patch b/bacula/patches/3.0.2-Add-more-info-when-SD-connection-refused.patch new file mode 100644 index 0000000000..4da673ead0 --- /dev/null +++ b/bacula/patches/3.0.2-Add-more-info-when-SD-connection-refused.patch @@ -0,0 +1,35 @@ +From 729f8b83b1002ae272e75a6139631846946f728f Mon Sep 17 00:00:00 2001 +From: Kern Sibbald +Date: Thu, 10 Sep 2009 15:19:13 +0200 +Subject: [PATCH] Add more info when SD connection refused + +as mentioned in bug #1371 +--- + bacula/src/stored/dircmd.c | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/bacula/src/stored/dircmd.c b/bacula/src/stored/dircmd.c +index 4f4a2d7..b011802 100644 +--- a/bacula/src/stored/dircmd.c ++++ b/bacula/src/stored/dircmd.c +@@ -152,7 +152,7 @@ void *handle_connection_request(void *arg) + char tbuf[100]; + + if (bs->recv() <= 0) { +- Emsg0(M_ERROR, 0, _("Connection request failed.\n")); ++ Emsg1(M_ERROR, 0, _("Connection request from %s failed.\n"), bs->who()); + bs->close(); + return NULL; + } +@@ -162,7 +162,7 @@ void *handle_connection_request(void *arg) + */ + if (bs->msglen < 25 || bs->msglen > (int)sizeof(name)) { + Dmsg1(000, "msg); +- Emsg1(M_ERROR, 0, _("Invalid connection. Len=%d\n"), bs->msglen); ++ Emsg2(M_ERROR, 0, _("Invalid connection from %s. Len=%d\n"), bs->who(), bs->msglen); + bs->close(); + return NULL; + } +-- +1.6.4.2 +