>>
>> The '\0' is an old way to check for a null string.  It probably can be
>> fixed with
>>
>> strlen(top.do_check) == 0
>>
>> or possibly
>>
>> top.do_check == (char*)'\0'
>>
>>
>> I was able to get the package to build but it needed fixes to
>> modules/filter/tex.cpp and prog/check_funs.cpp for basically the same
>> problem in both files.
>>
> >I did not check the function of the built package.
>>
>>    -- Bruce
>>
>> Yes that works. Thanks for that.
>
>
>_What_ are you saying 'works': the strlen() approach, or the char*
>approach, or both?
>
>
>Also, could you possibly set your mailer to indent-quote (e.g. with
>'> ') your replies.

Both of Bruce's suggestions work, but following Uwe's comments I went with:

*top.do_check == '\0'

in modules/filter/tex.cpp

and 

if (*word == '\0')

in prog/check_funs.cpp

jb.


--
--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to