bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

missing #ifdef in logmsg.c


From: Dr. Weth Christopher
Subject: missing #ifdef in logmsg.c
Date: Thu, 21 Nov 2002 10:47:24 +0100

Hi,

building cvs 1.11.2 without client support fails, the problem is this
(logmsg.c, line 198):

    assert (current_parsed_root->isremote && !repository
            || !current_parsed_root->isremote && repository);

Solution:

#ifdef CLIENT_SUPPORT
    assert (current_parsed_root->isremote && !repository
            || !current_parsed_root->isremote && repository);
#endif


Cheers,

        Chriss





reply via email to

[Prev in Thread] Current Thread [Next in Thread]