PERFORCE change 18860 for review
Chris Vance
cvance at freebsd.org
Mon Oct 7 11:14:19 GMT 2002
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=18860
Change 18860 by cvance at 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 at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list