Fix indentation.

This commit is contained in:
joerg 2008-11-21 16:08:57 +00:00
parent 44ea47f214
commit ba1c83c8cc

View File

@ -1,4 +1,4 @@
/* $NetBSD: accf_http.c,v 1.5 2008/11/20 10:22:11 ad Exp $ */ /* $NetBSD: accf_http.c,v 1.6 2008/11/21 16:08:57 joerg Exp $ */
/*- /*-
* Copyright (c) 2000 Paycounter, Inc. * Copyright (c) 2000 Paycounter, Inc.
@ -28,7 +28,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: accf_http.c,v 1.5 2008/11/20 10:22:11 ad Exp $"); __KERNEL_RCSID(0, "$NetBSD: accf_http.c,v 1.6 2008/11/21 16:08:57 joerg Exp $");
#define ACCEPT_FILTER_MOD #define ACCEPT_FILTER_MOD
@ -323,10 +323,10 @@ soparsehttpvers(struct socket *so, void *arg, int waitflag)
} else if ( } else if (
mbufstrcmp(m, n, i, "HTTP/1.0") || mbufstrcmp(m, n, i, "HTTP/1.0") ||
mbufstrcmp(m, n, i, "HTTP/1.1")) { mbufstrcmp(m, n, i, "HTTP/1.1")) {
DPRINT("ok"); DPRINT("ok");
soishttpconnected(so, soishttpconnected(so,
arg, waitflag); arg, waitflag);
return; return;
} else { } else {
DPRINT("bad"); DPRINT("bad");
goto fallout; goto fallout;