mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Reintroduce debugging code that somehow got lost in a previous revision.
This commit is contained in:
parent
6569d6f3ec
commit
66ffb8a371
1 changed files with 2 additions and 0 deletions
|
|
@ -506,6 +506,8 @@ _fetch_write(conn_t *conn, const char *buf, size_t len)
|
|||
int
|
||||
_fetch_putln(conn_t *conn, const char *str, size_t len)
|
||||
{
|
||||
|
||||
DEBUG(fprintf(stderr, ">>> %s\n", str));
|
||||
if (_fetch_write(conn, str, len) == -1 ||
|
||||
_fetch_write(conn, ENDL, sizeof ENDL) == -1)
|
||||
return (-1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue