PERFORCE change 18280 for review

Robert Watson rwatson at freebsd.org
Sat Sep 28 17:40:05 GMT 2002


http://people.freebsd.org/~peter/p4db/chv.cgi?CH=18280

Change 18280 by rwatson at rwatson_tislabs on 2002/09/28 10:39:38

	Return string length, not the size of the string length.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/security/mac_biba/mac_biba.c#114 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/security/mac_biba/mac_biba.c#114 (text+ko) ====

@@ -575,7 +575,7 @@
 		if (error)
 			return (error);
 
-		element->me_datalen = sizeof(strlen(string)+1);
+		element->me_datalen = strlen(string)+1;
 	}
 
 	return (0);
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