Source-Changes-D archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: src/sys/kern
On Sat, Oct 27, 2018 at 09:13:45AM +0000, Michael van Elst wrote:
> Module Name: src
> Committed By: mlelstv
> Date: Sat Oct 27 09:13:45 UTC 2018
>
> Modified Files:
> src/sys/kern: subr_tftproot.c
>
> Log Message:
> appease gcc
>
>
..
> @@ -318,9 +318,10 @@ tftproot_getfile(struct tftproot_handle
> * file.
> */
> if ((error = (*so->so_send)(so, mtod(m_serv, struct sockaddr *), NULL,
> - m_outbuf, NULL, 0, l)) != 0)
> + m_outbuf, NULL, 0, l)) != 0) {
> DPRINTF(("%s():%d tftproot: sosend returned %d\n",
> __func__, __LINE__, error));
> + }
>
> /* Freed by the protocol */
> m_outbuf = NULL;
>
Looks like a significant functional change, possibly even worth pulling
up? (We should probably clean up #define DPRINTF(x) /* empty */)
Home |
Main Index |
Thread Index |
Old Index