Skip to content

Commit

Permalink
Correct compile error introduced by rev 1.61
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/jj/hercules.svn/trunk@4248 956126f8-22a0-4046-8f4a-272fa8102e63
  • Loading branch information
Roger Bowler committed Jan 14, 2007
1 parent 24ab495 commit 38051ba
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions ctc_lcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
// $Id$
//
// $Log$
// Revision 1.61 2007/01/14 08:03:30 fish
// correct minor (benign(?)) bug in LCS_QueryIPAssists, fix HHCLC011I and related deug msgs in LCS_PortThread to display IP address in correct byte-order.
//
// Revision 1.60 2006/12/08 09:43:19 jj
// Add CVS message log
//
Expand Down Expand Up @@ -1289,10 +1292,10 @@ static void LCS_QueryIPAssists( PLCSDEV pLCSDEV, PLCSHDR pHeader )
// the 'hwOffset' field, is an exact copy of the LCSHDR
// that was passed to us...

STORE_HW( pReply->hwNumIPPairs, 0x0000 );
pReply->hwIPAssistsSupported = pPort->sIPAssistsSupported;
pReply->hwIPAssistsEnabled = pPort->sIPAssistsEnabled;
STORE_HW( pReply->hwIPVersion, 0x0004 );
STORE_HW( pReply->hwNumIPPairs, 0x0000 );
STORE_HW( pReply->hwIPAssistsSupported, pPort->sIPAssistsSupported );
STORE_HW( pReply->hwIPAssistsEnabled, pPort->sIPAssistsEnabled );
STORE_HW( pReply->hwIPVersion, 0x0004 );
}

//
Expand Down

0 comments on commit 38051ba

Please sign in to comment.