On 12/21/17, dewey.hyl...@gmail.com <dewey.hyl...@gmail.com> wrote:
> 1268        vfile_scan(&base, blob_size(&base), 0, 0, 0);
> (gdb) n

You need to step into vfile_scan() (using "s" instead of "n") because
that is where all the interesting stuff happens.  There is a loop
inside vfile_scan() that uses readdir() to read out the contents of a
directory and store each filename into the SFILE temp table of the
database.  You need to figure out for us why it is that the *.fossil
files are not being discovered by readdir(), or why they are not
making it into the SFILE table.  This will require some C-debugging
skills.

Nobody else can do this for you, because nobody else is able to
reproduce your problem.

-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to