Re: Uninitialized static structure in generator.c/write_sum_head

2004-11-28 Thread John E. Malmberg
Paul Slootman wrote: On Sat 27 Nov 2004, John E. Malmberg wrote: A static data structure is guaranteed to be initialised to zero... Ok. Shouldn't it more correctly be: const struct sum_struct null_num = {0, 0, 0, 0, 0, NULL}; Perhaps more readable, but in no way more correct. Putting the const q

Re: Shared remote repository

2004-11-28 Thread Joost van den Broek
On Saturday 27 November 2004 13:32, Tony Mobily wrote: > This should make it possible for me and Max to modify files on the > remote server OR on the local file system, knowing that the server will > always have the latest version of every file. > You probably wanna check out Unison to do this. Se

Re: Uninitialized static structure in generator.c/write_sum_head

2004-11-28 Thread Paul Slootman
On Sat 27 Nov 2004, John E. Malmberg wrote: > In the module generator.c, there is a static struct sum_struct null_sum > that is not initialized by any way that I can determine in the routine > write_sum_head. A static data structure is guaranteed to be initialised to zero... > Shouldn't it mor