PERFORCE change 85414 for review
Robert Watson
rwatson at FreeBSD.org
Mon Oct 17 07:42:06 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=85414
Change 85414 by rwatson at rwatson_peppercorn on 2005/10/17 07:41:43
Minor whitespace and style tweaks for token code.
Affected files ...
.. //depot/projects/trustedbsd/openbsm/libbsm/bsm_token.c#20 edit
Differences ...
==== //depot/projects/trustedbsd/openbsm/libbsm/bsm_token.c#20 (text+ko) ====
@@ -164,7 +164,6 @@
return (NULL);
}
-
GET_TOKEN_AREA(t, dptr, 29);
if (t == NULL)
return (NULL);
@@ -237,7 +236,7 @@
}
/* Determine the size of the basic unit. */
- switch(unit_type) {
+ switch (unit_type) {
case AUR_BYTE:
datasize = AUR_BYTE_SIZE;
break;
@@ -391,7 +390,8 @@
* token ID 1 byte
* ip header 20 bytes
*/
-token_t *au_to_ip(struct ip *ip)
+token_t *
+au_to_ip(struct ip *ip)
{
token_t *t;
u_char *dptr = NULL;
@@ -544,11 +544,11 @@
}
/*
- * token ID 1 byte
- * seconds of time 4 bytes
- * milliseconds of time 4 bytes
- * file name len 2 bytes
- * file pathname N bytes + 1 terminating NULL byte
+ * token ID 1 byte
+ * seconds of time 4 bytes
+ * milliseconds of time 4 bytes
+ * file name len 2 bytes
+ * file pathname N bytes + 1 terminating NULL byte
*/
token_t *
#if defined(KERNEL) || defined(_KERNEL)
@@ -707,7 +707,8 @@
pid_t pid, au_asid_t sid, au_tid_t *tid)
{
- return (au_to_process32(auid, euid, egid, ruid, rgid, pid, sid, tid));
+ return (au_to_process32(auid, euid, egid, ruid, rgid, pid, sid,
+ tid));
}
/*
@@ -768,8 +769,8 @@
}
token_t *
-au_to_process_ex(au_id_t auid, uid_t euid, gid_t egid, uid_t ruid, gid_t rgid,
- pid_t pid, au_asid_t sid, au_tid_addr_t *tid)
+au_to_process_ex(au_id_t auid, uid_t euid, gid_t egid, uid_t ruid,
+ gid_t rgid, pid_t pid, au_asid_t sid, au_tid_addr_t *tid)
{
return (au_to_process32_ex(auid, euid, egid, ruid, rgid, pid, sid,
@@ -870,7 +871,7 @@
*/
token_t *
au_to_socket_ex_32(u_int16_t lp, u_int16_t rp, struct sockaddr *la,
-struct sockaddr *ra)
+ struct sockaddr *ra)
{
errno = ENOTSUP;
@@ -903,7 +904,7 @@
GET_TOKEN_AREA(t, dptr, 107);
if (t == NULL)
return (NULL);
-
+
ADD_U_CHAR(dptr, AU_SOCK_UNIX_TOKEN);
/* BSM token has two bytes for family */
ADD_U_CHAR(dptr, 0);
@@ -985,7 +986,7 @@
au_to_sock_inet(struct sockaddr_in *so)
{
- return au_to_sock_inet32(so);
+ return (au_to_sock_inet32(so));
}
/*
@@ -1045,7 +1046,8 @@
pid_t pid, au_asid_t sid, au_tid_t *tid)
{
- return (au_to_subject32(auid, euid, egid, ruid, rgid, pid, sid, tid));
+ return (au_to_subject32(auid, euid, egid, ruid, rgid, pid, sid,
+ tid));
}
/*
@@ -1109,6 +1111,7 @@
au_to_subject_ex(au_id_t auid, uid_t euid, gid_t egid, uid_t ruid, gid_t rgid,
pid_t pid, au_asid_t sid, au_tid_addr_t *tid)
{
+
return (au_to_subject32_ex(auid, euid, egid, ruid, rgid, pid, sid,
tid));
}
@@ -1262,7 +1265,7 @@
timems = tm.tv_usec/1000;
/* Add the timestamp */
ADD_U_INT32(dptr, tm.tv_sec);
- ADD_U_INT32(dptr, timems); /* We need time in ms */
+ ADD_U_INT32(dptr, timems); /* We need time in ms. */
return (t);
}
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