Skip to content

Commit

Permalink
removing new field for now
Browse files Browse the repository at this point in the history
  • Loading branch information
AsherGlick committed Feb 4, 2024
1 parent b1e6497 commit 036a89a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions burrito_link/burrito_link.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ int connect_and_or_send() {
memcpy(SendBuf + BufLength, &lc->uiState, sizeof(lc->uiState));
BufLength += sizeof(lc->uiState);

memcpy(SendBuf + BufLength, &lc->mountIndex, sizeof(lc->mountIndex));
BufLength += sizeof(lc->mountIndex);
// memcpy(SendBuf + BufLength, &lc->mountIndex, sizeof(lc->mountIndex));
// BufLength += sizeof(lc->mountIndex);

TotalByteSent = sendto(SendingSocket, SendBuf, BufLength, 0, (SOCKADDR *)&ReceiverAddr, sizeof(ReceiverAddr));
if (TotalByteSent != BufLength) {
Expand Down

0 comments on commit 036a89a

Please sign in to comment.