Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 173219
Collapse All | Expand All

(-)src/racoon/isakmp_inf.c (-4 / +4 lines)
Lines 267-278 isakmp_info_recv(iph1, msg0) Link Here
267
267
268
	switch (np) {
268
	switch (np) {
269
	case ISAKMP_NPTYPE_N:
269
	case ISAKMP_NPTYPE_N:
270
		if (isakmp_info_recv_n(iph1, msg) < 0)
270
		if ( encrypted )
271
			goto end;
271
			isakmp_info_recv_n(iph1, msg);
272
		break;
272
		break;
273
	case ISAKMP_NPTYPE_D:
273
	case ISAKMP_NPTYPE_D:
274
		if (isakmp_info_recv_d(iph1, msg) < 0)
274
		if ( encrypted )
275
			goto end;
275
			isakmp_info_recv_d(iph1, msg);
276
		break;
276
		break;
277
	case ISAKMP_NPTYPE_NONCE:
277
	case ISAKMP_NPTYPE_NONCE:
278
		/* XXX to be 6.4.2 ike-01.txt */
278
		/* XXX to be 6.4.2 ike-01.txt */

Return to bug 173219