]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Add ENABLE_NLS (as suggested by Eric) to correct NLS problems.
authorKern Sibbald <kern@sibbald.com>
Sun, 17 Dec 2006 13:36:35 +0000 (13:36 +0000)
committerKern Sibbald <kern@sibbald.com>
Sun, 17 Dec 2006 13:36:35 +0000 (13:36 +0000)
     Remove NLS kludge from baconfig.h.  This fixes bug #729.
kes  Allow seeking on DVD.

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

bacula/autoconf/config.h.in
bacula/autoconf/config.h.in.save
bacula/src/baconfig.h
bacula/src/dird/job.c
bacula/technotes-1.39

index 00bb6056e5a2264486d3d6d6cb27a1b0dbbfe386..6f43ac9577c37165e03948fcf6037c7ca75da809 100644 (file)
 
 /* Define the LOCALEDIR if a translation */
 #undef LOCALEDIR
+
+/* Define if language support is enabled */
+#undef ENABLE_NLS
index 00bb6056e5a2264486d3d6d6cb27a1b0dbbfe386..6f43ac9577c37165e03948fcf6037c7ca75da809 100644 (file)
 
 /* Define the LOCALEDIR if a translation */
 #undef LOCALEDIR
+
+/* Define if language support is enabled */
+#undef ENABLE_NLS
index cec015ce573be519aefdae8012f082c7261da3db..4c7ae5ef3105c46fc1708965b4aac4ff8386411e 100644 (file)
@@ -83,7 +83,6 @@ void InitWinAPIWrapper();
 
 #define  OSDependentInit()    InitWinAPIWrapper()
 
-#undef ENABLE_NLS
 
 #if defined(BUILDING_DLL)
 #  define DLL_IMP_EXP   _declspec(dllexport)
index 8c2153b0a4bbc5a2c82aa02583e8329cae6b7f36..e715d0edced31b3eb9d04a88245a69eaef74a15a 100644 (file)
@@ -443,7 +443,7 @@ static void job_monitor_watchdog(watchdog_t *self)
    Dmsg1(800, "job_monitor_watchdog %p called\n", self);
 
    foreach_jcr(jcr) {
-      bool cancel;
+      bool cancel = false;
 
       if (jcr->JobId == 0 || job_canceled(jcr)) {
          Dmsg2(800, "Skipping JCR=%p Job=%s\n", jcr, jcr->Job);
index f19fb87a8b715b783f44b9c2b790f45e01bafbd7..918d20244ddd4de192dfc75b9efa91c98fe3073d 100644 (file)
@@ -2,6 +2,8 @@
 
 General:
 17Dec06
+kes  Add ENABLE_NLS (as suggested by Eric) to correct NLS problems.
+     Remove NLS kludge from baconfig.h.  This fixes bug #729.
 kes  Allow seeking on DVD.
 kes  Add additional messages when Job canceled automatically for
      max run time or max start wait exceeded.  This fixes bug #621.