mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
MFC r203460:
pukeText is an internal function so define it as static rather than exporting it.
This commit is contained in:
parent
6e064db94e
commit
949a9c3cf1
2 changed files with 3 additions and 2 deletions
|
|
@ -144,7 +144,6 @@ int addText(pdu_t *pp, char *fmt, ...);
|
|||
void freePDU(pdu_t *pp);
|
||||
int xmitpdu(isess_t *sess, pdu_t *pp);
|
||||
int recvpdu(isess_t *sess, pdu_t *pp);
|
||||
void pukeText(char *it, pdu_t *pp);
|
||||
|
||||
int lookup(token_t *tbl, char *m);
|
||||
|
||||
|
|
|
|||
|
|
@ -46,6 +46,8 @@ __FBSDID("$FreeBSD$");
|
|||
#include "iscsi.h"
|
||||
#include "iscontrol.h"
|
||||
|
||||
static void pukeText(char *it, pdu_t *pp);
|
||||
|
||||
int
|
||||
xmitpdu(isess_t *sess, pdu_t *pp)
|
||||
{
|
||||
|
|
@ -153,7 +155,7 @@ freePDU(pdu_t *pp)
|
|||
pp->ds_size = pp->ds_len = 0;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
pukeText(char *it, pdu_t *pp)
|
||||
{
|
||||
char *ptr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue