From owner-p4-projects@FreeBSD.ORG Sat Jan 21 13:25:08 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DB5AF16A422; Sat, 21 Jan 2006 13:25:07 +0000 (GMT) X-Original-To: perforce@freebsd.org 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 9B3CC16A41F for ; Sat, 21 Jan 2006 13:25:07 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53AB343D4C for ; Sat, 21 Jan 2006 13:25:07 +0000 (GMT) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k0LDP7jQ081076 for ; Sat, 21 Jan 2006 13:25:07 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0LDP7JA081073 for perforce@freebsd.org; Sat, 21 Jan 2006 13:25:07 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Sat, 21 Jan 2006 13:25:07 GMT Message-Id: <200601211325.k0LDP7JA081073@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 90073 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jan 2006 13:25:09 -0000 http://perforce.freebsd.org/chv.cgi?CH=90073 Change 90073 by rwatson@rwatson_sesame on 2006/01/21 13:24:29 More compact and readable representations of size addition. Affected files ... .. //depot/projects/trustedbsd/openbsm/libbsm/bsm_token.c#26 edit Differences ... ==== //depot/projects/trustedbsd/openbsm/libbsm/bsm_token.c#26 (text+ko) ==== @@ -86,8 +86,8 @@ textlen = strlen(text); textlen += 1; - GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_char) + - sizeof(u_int32_t) + sizeof(u_int16_t) + textlen); + GET_TOKEN_AREA(t, dptr, 2 * sizeof(u_char) + sizeof(u_int32_t) + + sizeof(u_int16_t) + textlen); if (t == NULL) return (NULL); @@ -111,8 +111,8 @@ textlen = strlen(text); textlen += 1; - GET_TOKEN_AREA(t, dptr, sizeof(u_char) + sizeof(u_char) + - sizeof(u_int64_t) + sizeof(u_int16_t) + textlen); + GET_TOKEN_AREA(t, dptr, 2 * sizeof(u_char) + sizeof(u_int64_t) + + sizeof(u_int16_t) + textlen); if (t == NULL) return (NULL);