PERFORCE change 64599 for review
Robert Watson
rwatson at FreeBSD.org
Mon Nov 8 16:19:27 GMT 2004
http://perforce.freebsd.org/chv.cgi?CH=64599
Change 64599 by rwatson at rwatson_tislabs on 2004/11/08 16:19:10
Missing close parens on debugging macros.
Affected files ...
.. //depot/projects/trustedbsd/mac/sys/kern/sysv_msg.c#27 edit
.. //depot/projects/trustedbsd/mac/sys/kern/sysv_sem.c#30 edit
.. //depot/projects/trustedbsd/mac/sys/kern/sysv_shm.c#27 edit
Differences ...
==== //depot/projects/trustedbsd/mac/sys/kern/sysv_msg.c#27 (text+ko) ====
@@ -569,7 +569,7 @@
error = mac_check_sysv_msqget(cred, msqkptr);
if (error != 0) {
MPRINTF(("mac_check_sysv_msqget returned %d\n",
- error);
+ error));
goto done2;
}
#endif
==== //depot/projects/trustedbsd/mac/sys/kern/sysv_sem.c#30 (text+ko) ====
@@ -841,7 +841,7 @@
error = mac_check_sysv_semget(cred, &sema[semid]);
if (error != 0) {
MPRINTF(("mac_check_sysv_semget returned %d\n",
- error);
+ error));
goto done2;
}
#endif
==== //depot/projects/trustedbsd/mac/sys/kern/sysv_shm.c#27 (text+ko) ====
@@ -357,7 +357,7 @@
#ifdef MAC
error = mac_check_sysv_shmat(td->td_ucred, shmseg, shmflg);
if (error != 0) {
- MPRINTF(("mac_check_sysv_shmat returned %d\n", error);
+ MPRINTF(("mac_check_sysv_shmat returned %d\n", error));
goto done2;
}
#endif
@@ -477,7 +477,7 @@
#ifdef MAC
error = mac_check_sysv_shmctl(td->td_ucred, shmseg, uap->cmd);
if (error != 0) {
- MPRINTF(("mac_check_sysv_shmctl returned %d\n", error);
+ MPRINTF(("mac_check_sysv_shmctl returned %d\n", error));
goto done2;
}
#endif
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