From owner-p4-projects Mon Oct 7 4:14:23 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 86FBF37B404; Mon, 7 Oct 2002 04:14:20 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1290137B401 for ; Mon, 7 Oct 2002 04:14:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A795243E4A for ; Mon, 7 Oct 2002 04:14:19 -0700 (PDT) (envelope-from cvance@tislabs.com) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g97BEJCo081156 for ; Mon, 7 Oct 2002 04:14:19 -0700 (PDT) (envelope-from cvance@tislabs.com) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g97BEJS4081153 for perforce@freebsd.org; Mon, 7 Oct 2002 04:14:19 -0700 (PDT) Date: Mon, 7 Oct 2002 04:14:19 -0700 (PDT) Message-Id: <200210071114.g97BEJS4081153@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to cvance@tislabs.com using -f From: Chris Vance Subject: PERFORCE change 18860 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG http://people.freebsd.org/~peter/p4db/chv.cgi?CH=18860 Change 18860 by cvance@cvance_laptop on 2002/10/07 04:13:52 Fix wrapping on long lines Affected files ... .. //depot/projects/trustedbsd/mac/sys/security/sebsd/sebsd.c#30 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/security/sebsd/sebsd.c#30 (text+ko) ==== @@ -416,7 +416,8 @@ struct vattr va; VOP_GETATTR(vp, &va, curthread->td_ucred, curthread); - printf("sebsd_update_vnode_from_extattr: no label for inode=%ld, fsid=%d\n", va.va_fileid, va.va_fsid); + printf("sebsd_update_vnode_from_extattr: no label for " + "inode=%ld, fsid=%d\n", va.va_fileid, va.va_fsid); return (0); } @@ -428,12 +429,15 @@ struct vattr va; VOP_GETATTR(vp, &va, curthread->td_ucred, curthread); - printf("sebsd_vnode_from_extattr: len=%d: context=%s inode=%ld, fsid=%d\n", context_len, context, va.va_fileid, va.va_fsid); + printf("sebsd_vnode_from_extattr: len=%d: context=%s " + "inode=%ld, fsid=%d\n", context_len, context, + va.va_fileid, va.va_fsid); } error = security_context_to_sid(context, context_len, &vsec->sid); if (error) { - printf("sebsd_update_vnode_from_extattr: ERROR mapping context to sid: %s\n", context); + printf("sebsd_update_vnode_from_extattr: ERROR mapping " + "context to sid: %s\n", context); return (0); /* TBD bad, bad, bad */ } @@ -778,8 +782,8 @@ if (rc) return (rc); if (old_file->sclass == 0) { - printf("vnode_relabel_from:: ERROR, sid=%d, sclass=0, v_type=%d\n", - old_file->sid, vp->v_type); + printf("vnode_relabel_from:: ERROR, sid=%d, sclass=0, " + "v_type=%d\n", old_file->sid, vp->v_type); return 0; /* TBD: debugging */ } @@ -835,8 +839,8 @@ if (vp) { new_file = SLOT(label); if (new_file->sclass == 0) { - printf("vnode_relabel_to:: ERROR, sid=%d, sclass=0, v_type=%d\n", - new_file->sid, vp->v_type); + printf("vnode_relabel_to:: ERROR, sid=%d, sclass=0, " + "v_type=%d\n", new_file->sid, vp->v_type); return 0; /* TBD: debugging */ } if (vp->v_type == VDIR) { To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message