]> git.sur5r.net Git - bacula/bacula/blob - bacula/kes-1.39
- Integrate Howard's VSS patch. Tweak it a bit. VSS now
[bacula/bacula] / bacula / kes-1.39
1               Technical notes on version 1.39  
2                         Kern Sibbald
3
4 General:
5 29Apr06
6 - Integrate Howard's VSS patch. Tweak it a bit. VSS now
7   works in the MinGW build with the exception that there
8   is a problem with accented characters -- i.e. there is
9   some mapping problem with wide characters.
10 - The code no longer compiles with Microsoft VC++.
11 28Apr06
12 - Start implementing Christopher's St.Bernard code.
13 - Add Christopher's mods for opening files.
14 - Strip \r \n from Win32 error messages (Christopher)
15 - Add more info about Win32 system if unknown (Christopher)
16 - Use bstrn(cpy, cat) routines to avoid overrun in compat.cpp
17 - Fix a number of incorrect strings marked for translation, when
18   they should not be (e.g. commands).
19 - Fix StartTime bug reported for ClientRunBeforeJob and RunBeforeJob
20   Patches supplied by user in bugs #608 and #599.
21 - Use most recent of st_ctime and st_mtime in restore tree DIR
22   listing. This fixes some problems with Win32 printing incorrect
23   values.
24 - Correct the clock shift comm time calculation between the DIR
25   and the FD. It was added rather than subtracted.
26 - Strip all backslashes in filenames to be restored on Win32
27   machines -- the names should all be in Unix format, and if
28   there are any backslashes it is most likely due to an improper
29   FileSet definition, and the files will not otherwise be 
30   restorable.
31 - Remove lib/regex.c (replaced by bregex.c).
32 - Delete src/win32/License.txt
33 - Modify installer to install LICENSE
34 26Apr06
35 - Fix bug in build-win32-cross-tools script reported by Howard
36 - Implement cross compiled bconsole
37 25Apr06
38 - Fix barcode test, eliminate BOOL (doesn't exist on Linux).
39 - Write first cut of README.mingw32
40 - Add back ua_label barcode fix from Rufolf Cejka.
41 - Integrate the majority of the Mingw cross-tools submission
42   made by Howard Thomson. Everything compiles, with zlib, openssl,
43   and VSS turned off. Linking needs a pthreads library ...
44 23Apr06
45 - Add 'Dir Status' button to the gnome console.
46 - More work on migration.
47 - Restore non-compatible base64 coding to permit compatibility.
48 - Display heap stats in Storage daemon without debug level.
49 22Apr06
50 - Integrate most of the MinGW changes -- more to do.
51 21Apr06
52 - Implement using pg_config for finding PostgreSQL files.
53   Fixes bug #600. Patch supplied by user.
54 - Remove -t option from mktemp in mtx_changer.in and use
55   working directory. Fixes bug #578.
56 - Update job start time after the any run before job so that
57   files created by the script are only backed up once. Fixes
58   bug #599.
59 - Strip trailing newline only from filenames entered in
60   the restore command when reading a file. This permits
61   the user to enter filenames with trailing spaces. Fixes
62   bug #549. The user supplied a patch that I modified slightly.
63 - Use the most recent time (st_mtime, st_ctime) in the dir
64   command in restore. This gives the user a better idea of what
65   the newest file really is. This fixes bug #574. The fix
66   was suggested by the user.
67 - Implement a compatible version of base64. This permits external
68   programs to duplicate Bacula's base64 algorithm using standard
69   routines. This fixes bugs #296, and 565. Patch submitted by   
70   author of bug #565.  
71   ================= Note ========================
72   Previous Signatures stored in the database are no longer
73   compatible with this. The main downside is for Verify jobs,
74   and doing an InitCatalog run will fix the problem. Also, the
75   authentication between the deamons is changed, so all daemons
76   must be simultaneously upgraded.
77   ==============================================
78   If you don't like this fix, set:
79     const bool compatible = true;
80   to
81     const bool compatible = false;
82   in src/lib/base64.c
83 20Apr06
84 - Ensure that DB signature is never NULL.
85 - Ensure that DB table names are not translated.
86 - Fix scheduler to handle time skew (eg daylight savings).
87 - Fix scheduler to use lock_jobs() to avoid most problems
88   with reload. Window is now milliseconds.
89 19Apr06
90 - Apply patch from Christopher Hull
91   - Allow multiple connections to database with different
92     parameters.
93   - Invalidate the scheduler when doing a reload. Fixes seg
94     fault, but still 60 second window.
95   - Additional info in Reschedule message.
96   - Use set_jcr_job_status() everywhere to prevent loss of
97     cancel, error.
98   - Display peer IP in FD if error from connecting DIR.
99   - Don't increment file count for DIRBEGIN.
100   - Replace illegal characters in Win32 filename by _.
101   - Add SE_CREATE_PERMANENT_NAME privilege in Win32.
102   - Hash hard link filenames rather than linked list.
103   - Fix for security failure in chdir on Win32.
104   - Add CreateDirectoryA/W win32 API entry points.
105 - Add /silent option to Win32 FD for Install/Remove service.
106 - Always print Heap statistics in FD.
107 18Apr06
108 - Remove the -f option from the chown in Makefile.in for more
109   portability.
110 - Change setting the group in Makefile.in to use chgrp for
111   more portability.
112 - Implement a write_store and read_store to replace
113   dirstore in reserve.c
114 - Implement a Bacula read/write lock for Python rather
115   than using the Python lock to avoid recursive problems.
116 - Correct the uninstall directory names in filed/Makefile.in
117   as reported by a user.
118 17Apr06
119 - Correct some problems with database creation (new tables).
120 - Replace a bunch of old 0x%x by %p.
121 - Get first cut of Migration with Job selection working.
122 16Apr06
123 - Change store_bit() to store_bool() for the Spooling in 
124   dird_conf.c -- bug reported by Robert Nelson.
125 15Apr06
126 - Correct Makefile bug found by Dan Langille.
127 14Apr06
128 - Correct Makefile for Solaris /bin/sh
129 - Correct mtx-changer.in for Solaris /bin/sh
130 - Abort if a conf resource does not have a Name =
131 12Apr06
132 - Change the name of the regex program to bregex.
133 - Add the bwild program to the tools directory. It is similar
134   to the bregex program.
135 - Implement create bregex.h and bregex.c in src/lib from the
136   Python regexp program.  
137 - Use the new bregex.c to implement Regex expressions on Win32.
138 11Apr06
139 - More work on migration.
140 - Implement wild program in tools directory for testing
141   wild-cards. Almost identical to the regex program.
142 - Up port VSS single thread locking code.
143 - Replace N_(..) by NT_(...) to inhibit translation of
144   commands.
145 - Modify Makefile to change the permissions on Working Directory
146   to 770 if the directory is created.
147 - Do not fail the Makefile if changing the permissions or 
148   owner/group on WorkingDir fails.
149 - Remove early selection of Scratch Volumes in the recycling
150   algorithm.
151 - Correct the old recycling algorithm so that Scratch Volumes
152   are selected when looking for a Volume in the changer.
153 - Correct a typo in the Verify SQL reported by Joe Park.
154 10Apr06
155 - Remove automatic case folding on Windows FDs. You must
156   explictly use the 'Ignore Case = yes' option.
157 - Remove the code added to 1.38.6 and 1.38.7 that pulls a
158   scratch volume in an Autochanger early in the 'recycling'
159   algorithm.  
160 09Apr06
161 - Make weof() and clrerror() methods of class DEVICE.
162 08Apr06
163 - Tweak license to include Microsoft restrictions.
164 - Move mysql.reconnect to after real_connect().  Thanks to
165   Frank Sweetser for the patch.
166 - Disallow a backslash in a File = directive (Windows junk)
167   unless the string is quoted.                     
168 - Apply Eric's patch to ua_label.c so that daemon protocol
169   is not translated.
170 - Add NT_ definition for strings that should not be translated.
171 - Apply NT_() to ua_label.c
172
173 - Remove timed wait for VSS on Win2K3 as it is not yet
174   implemented.
175 - Correct bacula.in script to reference bacula-ctl-xx in the
176   sysconfig directory rather than the bin directory.
177 26Mar06
178 - Fix a long standing bug in the bacula start/stop scripts.
179 - Attempt to add the new bacula-ctl-* files to the rpm.
180 - Switch to using typeof() for list traversing to avoid
181   as many FC5 g++ compiler warnings as possible.
182 25Mar06
183 - Split the bacula start/start script into four files:
184    bacula         -- starts and stops calling other scripts
185    bacula-ctl-dir -- starts/stops the director
186    bacula-ctl-fd  -- starts/stops the File daemon
187    bacula-ctl-sd  -- starts/stops the Storage daemon
188 24Mar06
189 - Create datestyle fix for PostgreSQL. Fixes bug #574.
190 - Correct editing of JobId from int to int64 in fd_cmds.c
191 - Eliminate FileSet name race with bash_spaces() and multiple
192   threads by bashing in a local.
193 - Fix error return from 'use storage' to print a correct error
194   message rather than nothing.
195 - Correct false re-read last block error message when two jobs 
196   are simultaneously writing at the end of a tape.
197 - Simplify exit conditions in the reserve.c code to avoid  
198   possible non-release of reservation_lock().
199 - Suffle lock order in reserve to avoid deadlock between
200   reservation lock and device mutex.
201 21Mar06
202 - Initialize jcr mutex before first use. Thanks to Thorsten for
203   tracking this down for me !!!! as it broke the Win32 build.
204 20Mar06
205 - Integrate addition of line count limitation to bsmtp -l from
206   Sebastian Stark <stark at tuebingen.mpg.de>
207 17Mar06
208 - Implement regex test program in tools directory.
209 - Attempt to fix time problem with bsmtp with foreign langs.
210 - Add strip_trailing_newline() submitted by user.
211 - Implement regex matching in migrate.c
212 16Mar06
213 - Fix bug #537 to allow arbitrary time to mount a volume for
214   restore, if polling is turned on.     
215 - If dir_user or dir-group is specified in ./configure apply it to
216   the working-dir. Fixes bug #533.
217 - If rescheduling a job cancel the previous incarnation with the SD.
218   Fixes bugs #566 and 557.
219 - Fix bug #567 do_message() definition type conflict.
220
221 14Mar06
222 - Add more jcr methods and make mutex and use_count private.
223 - Create lock/unlock methods for jcr.
224 - Fix PostgreSQL bug doing sql_data_seeek() by explicitly reading
225   records to get to seek position.
226 - Integrate patch from bug #561 to correct conio.c signal definitions.
227 - Fix Rescheduling failed Jobs. Ensure that SD message thread 
228   terminates correctly by doing pthread_kill(). Do not destroy
229   SD cond wait variable between executions of the job. Use local
230   mutex for cond variable to avoid blocking jcr chain. Fix poor 
231   use of jcr use count in jobq.c for restarted jobs.
232 - Fix obsolete usage of foreach_dlist() to use foreach_jcr() in
233   lib/jcr.c -- prevents locking the jcr chaing.
234 - Apply patch from bug #564, which corrects listing volumes with
235   multiple autochangers. Apply same fix to next volume list.
236 - Fix bug #562 where restore bootstrap file is not unique.
237 - More details in implementing David's migration syntax proposal.
238 - Save and restore dcr when swapping drives so that if we have
239   a write dcr it is not lost.
240 - Use new routine lock_reservations() to lock the reservations
241   system, and call it while looking for a volume in askdir.c.
242   This could possibly fix bug #543.
243 - Stop SD command loop if job is canceled.
244
245 08Mar06
246 - Remove old code from findlib/create_file.c
247 - Rename mac.c migrate.c
248 - Add user friendly display of VolBytes in job report.
249 - Rename target... to previous... to make it a bit easier to
250   understand.
251 - Add selection type and selection pattern to Migration (idea
252   given by David Boyes). 
253
254 04Mar06
255 - The po files should now be current.
256 - Fix new sql_use_result() code to properly release the
257   buffers in all cases.
258 - Use the keyword ujobid to mean the unique job id; job or jobname
259   to mean the Job name given on the Name directive, and jobid to
260   be the numeric (non-unique) job id.
261 - Allow listing by any of the above.
262 - Add the user friendly job report code for reporting job elapsed time
263   and rates with suffexes from John Kodis <kodis at comcast.net>.
264 - Add Priority and JobLevel as Python settable items.
265 - Use TEMPORARY table creation where the table is created by
266   Bacula.
267 - Add new code submitted by Eric for waiting on specific jobid.
268 - Add ACL checking for the dot commands.
269 - Fix restore of writable FIFOs.
270 - Fix a bug in bpipe where the string was freed too early.
271 27Feb06
272 - Modify the Python class examples to inherit object -- new way
273   of defining classes. Patch from Felix Schwarz.
274 - Implement jobuid to replace old usage of job in keywords as
275   suggested by Eric Bollengier.
276 - Apply patch for enhancing wait from Eric Bollengier. On can now:
277    wait  (wait for all jobs to stop)
278    wait jobid=nn
279    wait jobuid=unique id
280    wait job=job-name
281 - Implement write variables for Python to set Priority (anytime), and
282   Job Level, only during JobInit event.
283 26Feb06
284 - Fix the block listing bug pointed out by Arno.
285 - Update the po files at Eric's request.
286 24Feb06
287 - Fix Maximum Changer Wait, Maximum Open Wait, Maximum Rewind Wait to 
288   accept time qualifiers.
289 - Make catalog respect ACL.
290 - Add recycle count to Media record.
291
292 Changes to 1.39.6-beta1 24Feb04
293 23Feb06
294 - Add Rudolf Cejka's new rc-chio-changer.
295 - Implement pulling Volume from Scratch Pool if the
296   Volume is in the autochanger.
297 - Implement additional command arguments for update Volume.
298
299 Changes to 1.39.5 
300 22Feb06
301 - Back port changes to 1.38.5
302 - Fix recycle SQL for StorageId.
303 - Fix misplaced quote in mtx-changer script.
304 20Feb06
305 - Note. Your database must be updated, or you must create 
306   a new database. I have not yet incremented the database level.
307 - Add Location table. 
308 - Add LocationId, DeviceId, and MediaTypeId to Media record.
309 18Feb06
310 - Implement create/get mac record in database for adding extended
311   Migration data to the job record.
312 - Add new MAC table to update/make database scripts.
313 - Return Storage name used when getting VolumeNames for a job.
314 - Change bsr file keyword Storage to Device, which is more accurate.
315 - Ensure that Mac records are pruned/purged.
316 - Tweak SD tools to deal with changing media type.
317 - Integrate more dev.c subroutines as methods (e.g. strerror, bsr, ...)
318 - Pass pointer to dcr pointer to acquire_device_for_read() so
319   that the subroutine can switch devices, and hence dcrs.
320 - Modify the multiple MediaType read code to re-use the same
321   dcr when switching devices. This makes the code much more
322   robust.
323 - Integrate patch from Karl Hakimian that reads JobIds, FileIndexes
324   from a table for restore.
325 - Add Storage name to VolParams, but it really should be Device.
326 14Feb06
327 - Add disk-changer to scripts directory + configure/Makefile
328 - Eliminate PoolId from jcr -- it is in jcr->jr.PoolId
329 - Implement store_bit scanner to replace store_yesno.  Mostly done.
330 - Implement new store_bool that stores in a bool. 
331 - Add true/false to yes/no conf directives.
332 - Make first cut at changing appropriate store_yesno to store_bool.
333 - Complete implementation of Pool storage devices.
334 - Move starting clones to job.c
335 - Move create_restore_bootstrap_file() to job.c
336 - Make copy_storage() more general to be able to handle
337   Pool storage.
338 - Cleanup a lot of migration code for manual running, including
339   using Pool storage.
340 - Move getting a scratch Volume into a subroutine.
341 - Make all places a Volume that is added to a pool to 
342   respect max vols.
343 - Fix bug in autochanger recycle code (improper edit 64 bit).
344 - Fix segfault in restore command when no value specified.
345 - Start adding code to handle multiple MediaTypes in restore.
346 - Eliminate race condition in getting Volume name for
347   two drive autochanger.
348 - More debug code in autochanger.
349 - Add storage keyword to bootstrap file, add parsing.
350 - Move slot in bsr file into Volume record as there will be
351   a different slot for each Volume.
352 - Create reserve.h
353 07Feb06
354 - Implement Pool storage overrides.
355 06Feb06
356 - Implement first cut of Migration.
357 - Implement mysql_use_result() from patch by Karl Hakimian.
358   This reduces significantly the memory consumption during
359   the restore tree building, and hence runs faster too.
360 - Implement StorageId patch supplied by user (reggie) in bug
361   #536.  This should permit Bacula to work correctly with two
362   autochangers.
363 - Implement Job listing variations suggested by a user.
364 - Move updating bootstrap code in backup.c to subroutine
365   update_bootstrap_file().
366 - Add new job status elapsed time and bytes written user
367   friendly job report output patch sent by John Kodis
368   <kodis at comcast.ne>.
369 - Implement a storage list in Pools.
370 - Separate out setup_job() code from run_job().
371 - Get migration working -- lots of changes in mac.c in both
372   DIR and SD.
373 - Apply patch from user (Eric Bollinger I think) that fixes a  
374   DIR crash when no arguments are supplied to a dot command.
375 - Fix typo (strcpy->strcmp) in ua_prune.c as reported by Martin.
376 - Fix command arg name->volume in label command of gnome-console.
377 - Fix SD acquire.c to release correct DCR by explicitly testing
378   on the dcr address rather than trying to devine if it is a read
379   or write dcr.  This failed in error conditions when the device was
380   not fully setup.
381  
382 30Jan06
383 - Apply user supplied patch for more readable rate output
384   in job report.
385 - Continue implementing migration.
386 - Implement support for removable filesystems in SD.
387 - Ensure that btraceback scripts can be read by anyone.
388 - Replace dvd-freespace and dvd-writepart by dvd-handler.
389 - Correct bug where canceling restore before the FD contacts
390   the SD causes the drive to be left in read mode.
391 - Move ofline_or_rewind into DEVICE::close().
392 - Eliminate close_device.
393 - Convert several dev subroutines to methods (e.g. bsf,
394   eod, ...)
395 - Eliminate force_close_device().
396 - Implement Device Type directive in Device resource that
397   can have values File, Tape, Fifo, DVD, or Prog.
398 - Add has_cap() method to Device.
399 Changes to 1.39.4
400 17Jan06
401 - Add patch from bug #527 to allow RedHat user to specify
402   options/user/group for starting each daemon in      
403   /etc/sysconf/bacula.
404 16Jan06
405 - Add two new queries to query.sql provided by Arno. One
406   list volumes known to the Storage device, and the other
407   lists volumes possibly needing replacement (error, ...).
408 15Jan06
409 - Add periodic (every 24 hours) garbage collection of memory 
410   pool by releasing free buffers.
411 14Jan06
412 - Correct bug counting sized (for display only) in smartall.c
413 - Print FD mempool stats if debug > 0 rather than 5.
414 12Jan06
415 - Make db_lock() mutex error fail the job rather than abort
416   Bacula.  Canceling the job caused the mutex to fail.
417 - Correct bug in alist.c that re-allocated the list if the
418   number of items goes to zero.
419 - Move the reservation system thread locking to the top level
420   so that one job at a time tries all possible drives before
421   waiting.
422 - Implement a reservation 'fail' message queue that is built         
423   and destroyed on each pass through the reservation system.
424   These messages are displayed in a 'Jobs waiting to reserve
425   a drive' list during a 'status storage='.  Note, multiple
426   messages will generally print for each JobId because they
427   represent the different problems with either the same drive
428   or different drives.  If this output proves too confusing
429   of voluminous, I will display it only when debug level 1
430   or greater is enabled in the SD.
431 11Jan06
432 - Add enable/disable job=<job-name>.  This command prevents
433   the specified job from being scheduled. Even when disabled,
434   the job can be manually started from the console.
435 - During 'update slots' clear all InChanger flags where the
436   StorageId is zero (old Media records).
437
438 Beta release 1.38.4:
439 09Jan06
440 - Fix autochanger code to strip leading spaces from returned
441   slots number. Remove bc from chio-changer.
442 - Back port a bit of 1.39 crypto code to reduce diffs.
443 - Fix first call to autochanger that missed close()ing the
444   drive. Put close() just before each run_program().  Fixes
445   Arno's changer bug.
446 07Jan06
447 - Add PoolId to Job record when updating it at job start time.
448 06Jan06
449 - Pull in more code from 1.39 so that there are fewer file
450   differences (the new ua_dotcmds.c, base64.h, crypto.h
451   hmac.c jcr.c (dird and lib) lib.h md5.h parse_conf.c 
452   util.c. Aside from ua_dotcmds.c these are mostly crypto
453   upgrades.
454 - Implement new method of walking the jcr chain. The
455   incr/dec of the use_count is done within the walking
456   routines.  This should prevent a jcr from being freed
457   from under the walk routines.
458
459
460 Changes to 1.39.3:
461 04Jan06
462 - Start implementing Verify list output.
463 - Move the suitable_drive flag to a better place to prevent
464   premature termination of the reservation if all drives
465   are busy -- should fix Arno's diff/inc pool failures.
466 26Dec05
467 - Add mutex to single thread VSS code in Win32.
468 22Dec05
469 - Simplify code in askdir.c that waits for creating an appendable
470   volume so that it can handle multiple returns from the wait
471   code.
472 - Modify the wait code to permit multiple returns.
473 - Return a zero when "autochanger drives" is called and
474   it is not an autochanger.
475 - Make rewind_dev() a method taking a DCR as an argument.
476   This permits closing and reopening the drive if the
477   rewind fails as happens if the drive was loaded while the
478   file descriptor was open. This refreshes the file descriptor.
479 - Remove the ST_OPENED flag and always rely on fd < 0 for knowing
480   if the device is open or not.  This should eliminate
481   Arnos problem.
482 - Return error if reserve cannot find at least one suitable device.
483 - Make wait_for_sysop() return correct state information.
484 - Fix Win32 state file problem. write was not using compat
485   code. This should fix bug #500.
486 21Dec05
487 - Modify gui on command to set only GUI mode and not batch.
488 - Modify .messages command to always print messages regardless
489   of the mode.
490 - If GUI mode is on, suppress automatic printing of 
491   You have messages. 
492 - Delete old bnet packet code.
493 - Ignore new BNET_START_SELECT and BNET_END_SELECT signals in
494   wx-console.
495 - Modify restore command in wx-console to set gui on and to use
496   only .messages instead of messages.  Hopefully this fixes bug
497   #514.
498 - Fix seg fault in exit of acquire when canceling a job --
499   reported by Wolfgang Denk
500 - Pull in latest reservation system changes from 1.38
501 - Make .messages command always print messages regardless
502   of the automessages flag.
503 17Dec05
504 - Fix seg fault if user labels a drive directory bug #513
505 - Remove quotes around Version as it breaks things.
506 16Dec05
507 - Merge in Aleksandar Milivojevic's mods to the spec file.
508 - Apply sparse code fix for raw drives and fifos. Bug 506
509 - Thorsten fixed Unicode cd problem with wx-console bug 505.
510 14Dec05
511 - Correct reservation system to do a last ditch try
512   for any mounted volume, then anyone anywhere.
513 - Add quotes around table Version because of
514   error in MySQL 4.1.15 -- bug report submitted.
515 - Correct some minor problems with btape in the fill
516   command.
517 - Updates to ssh-tunnel from Joshua Kugler.
518 - Added a report.pl program from Jonas Bjorklund.            
519 - Simplify the O_NONBLOCK open() code for tape drives,
520   and always open nonblocking.
521 - Do not wait for open() if EIO returned (shouldn't happen).
522 - Eliminate 3 argument to tape open().
523 - Correct the slot # edited in the 3995 Bad autochanger unload
524   message.
525 - With -S on bscan (show progress) do not divide by zero.
526 13Dec05
527 - Make cancel pthread_cond_signal() pthread_cond_broadcast().
528 - When dcr is freed, also broadcast dev->wait_next_vol signal.
529 - Remove unused code in wait_for_device.  
530 - Make wait_for_device() always return after 60 seconds of wait.
531
532 Changes to 1.39.2:
533 13Dec05
534 - Add stubs for non-crypto build.
535 12Dec05
536 - Use localhost if no network configured
537 11Dec05
538 - Eliminated duplicate MaxVolBytes in cat update -- bug 509.
539 - Remove debug print.
540 - Add bail_out in error during state file reading.
541 10Dec05
542 - Merge changes made to 1.38.3 into HEAD
543 - Add stubs for pygtk-console code
544 - Create Makefile.in for pygtk-console code
545 09Dec05
546 - Merge updates into 1.38 branch
547 - Update specs to include mysql4 define.
548 - Fix when attributes are sent, must be after binit().
549 - Stop read_record() if status not ok in second loop.
550 - Return rec->FileIndex in dcr->VolLastIndex for normal
551   and partial records in read_record().  This allows bscan
552   to get FileIndex at EOT correct.
553 - Fix butil.c to correctly set dcr -- fixes seg fault in bls.
554 08Dec05
555 - Fix Win32 built to work with new crypto code.
556 - Apply patch supplied by user (slightly modified) to fix
557   correct detection of holes in block devices and FIFOs. 
558   Bug # 506.
559 - Apply patch supplied by user (slightly modified) 
560   to fix SD hang with multiple pools and bad client
561   IP. Fixes bug # 508.
562 07Dec05
563 - Add nagios plugin to the examples directory. Submitted by
564   Christian Masopust.
565 - Remove warning message about multiple saves of hardlinked files
566   from find_one.c as it can generate too many warning messages.
567 - Modify most restore error messages to be queued so that they
568   appear at the end of the job rather than mixted with the restore
569   listing where they could be "lost".
570 06Dec05
571 - Reset timeout values before select() per patch from 
572   Frank Sweetser for problems with non-blocking sockets.
573 - Unlink the state file if either reading or writing it gets
574   errors.  Hopefully this will fix Win32 exit problems.
575 - Add sanity check in append.c to ensure that dcr is not NULL.
576   This can happen if multiple drive autochanger SCSI control
577   channel and drive indicies do not correspond.
578 05Dec05
579 - Get next volume from Scratch pool before creating a volume.
580 - Set new Pool defaults in Vol when moved from Scratch Pool.
581 - Remove argument from create_bacula_database for SQLite as it
582   caused an error.
583 - Add back index code so that two drive autochangers can get
584   a second tape.
585 - Change a bunch of debug levels to aid debugging autochangers.
586 - Fix reservation so that mutexes are properly applied.
587 - Rework reservation algorithm so that two drives can be used
588   at the same time.
589 04Dec05
590 - Landon merged his data encription changes into the HEAD
591 - Apply days keyword patch from Alexander.Bergolth at wu-wien.ac.at 
592   If this patch is applied, the number of days can be specified with
593   "list nextvol days=xx"
594   or
595   "status dir days=xx"
596   My use case is to be able to preview the next scheduled job (and the 
597   next tape to be used) on fridays if there are no scheduled jobs during 
598   the weekend.
599 Changes to 1.39.1:
600 03Dec05
601 - Fix font code in gnome2 console user patch. Fixes bug #501.
602 - Fix malformatted bnet error message that caused seg fault
603   fixes bug 502
604 - Applied user patch to improve README.vc8 in src/win32.
605 29Nov05
606 - Add Migrate, Copy, Archive Job types (some where there)
607 - Correct some more editing of JobId's (for 64 bit compatibility).
608 - Ensure that StorageId is stored in Media record when ever possible.
609 - Add Migration Job to Job.
610 - Add Migration Time, Migration High Bytes, Migration Low Bytes
611   Next Pool to Pool resource.
612 - Add more code to mac.c (migration archive copy).
613 - Change Start Storage daemon job to require read and write storage
614   pointers.
615 - Pass read storage data to SD as well as write storage data.
616 - Remove old code from winservice.cpp
617 - Break on error in scan.
618 - Fix typo in signal.c
619 - Separate read/write DCR in SD.  Add jcr->read_dcr.
620 - Cleanup how find_device() works.
621 - Add read output to Status in SD.
622 Changes to 1.39.0:
623 23Nov05
624 - Add red-black btree routines
625 21Nov05
626 - Remove abs() in bfile.c so that it compiles on Solaris. 
627   Bug #491.
628 20Nov05
629 - Fix crash in tray-monitor when daemon disconnects. Bug #479.
630 - Fix bnet-server bug found on OpenBSD. Bug #486
631 - Fix cancel failure bug. Bug #481
632 - Fix failure when Pool name has spaces. Bug #487   
633 - Fix SD crash in autochanger code. Mutex failure. Bug #488
634 - Fix a couple of free()s in src/filed/acl.c
635 - Fix memory overrun in bfile.c in building OS X resource
636   fork filename. Bug #489 
637 - Add Pool name to SD status output.
638 14Nov05
639 - Apply SunOS patch for ACLs submitted by David Duchscher.                  
640 - Make sure to set storage before trying to set drive.
641 - Add bacula_mail_summary.sh to examples directory. It makes
642   a single email summary of any number of jobs. Submitted
643   by Adrew J. Millar.
644 - Make sure when we do a mount to unblock the device even
645   if the drive could not be opened.  
646 13Nov05
647 - Remove the USE_WIN32STREAMEXTRACTION #defines (always on)
648   and correct a few minor problems to make it build on Linux.
649 10Nov05
650 - Remove delete of CVS from all Makefiles
651 - Fix seg fault when clicking on Add button in wx-console
652   restore panel.  Bug #470.
653 - Fix copyright date and URL typo -- bug #468.
654 - Change autostart install for FreeBSD to look for rc.conf  
655   rather than rc.local as suggested fix for bug #466.
656 - Apply patch supplied by Eric Bollinger to fix PostgreSQL    
657   grant on status. Bug #465
658 - Apply patch supplied by Eric Bollinger to fix PostgreSQL
659   update script. Bug #464
660 - Tweak #ifdefing a bit in new Win32 stream code.
661 - Fix #ifdeffing for FD_NO_SEND_TEST.
662 - Add documentation of performance #defines