View | Details | Raw Unified | Return to bug 24683
Collapse All | Expand All

(-)/tmp/natd.c (-2 / +3 lines)
Lines 586-592 Link Here
586
static void FlushPacketBuffer (int fd)
586
static void FlushPacketBuffer (int fd)
587
{
587
{
588
	int			wrote;
588
	int			wrote;
589
	char			msgBuf[80];
589
	char			msgBuf[160];
590
/*
590
/*
591
 * Put packet back for processing.
591
 * Put packet back for processing.
592
 */
592
 */
Lines 616-622 Link Here
616
		}
616
		}
617
		else {
617
		else {
618
618
619
			sprintf (msgBuf, "failed to write packet back");
619
			sprintf (msgBuf, "failed to write packet back (%s)", 
620
                                 FormatPacket((struct ip*)packetBuf));
620
			Warn (msgBuf);
621
			Warn (msgBuf);
621
		}
622
		}
622
	}
623
	}

Return to bug 24683