From owner-p4-projects@FreeBSD.ORG Fri May 8 20:49:25 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 1DEE51065673; Fri, 8 May 2009 20:49:25 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D22051065672 for ; Fri, 8 May 2009 20:49:24 +0000 (UTC) (envelope-from zec@fer.hr) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C12958FC0C for ; Fri, 8 May 2009 20:49:24 +0000 (UTC) (envelope-from zec@fer.hr) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n48KnODj016540 for ; Fri, 8 May 2009 20:49:24 GMT (envelope-from zec@fer.hr) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n48KnO3P016538 for perforce@freebsd.org; Fri, 8 May 2009 20:49:24 GMT (envelope-from zec@fer.hr) Date: Fri, 8 May 2009 20:49:24 GMT Message-Id: <200905082049.n48KnO3P016538@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to zec@fer.hr using -f From: Marko Zec To: Perforce Change Reviews Cc: Subject: PERFORCE change 161791 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: Fri, 08 May 2009 20:49:25 -0000 http://perforce.freebsd.org/chv.cgi?CH=161791 Change 161791 by zec@zec_tpx32 on 2009/05/08 20:48:58 Don't forget to print out vimage name in vimage -l output. While here, add UofZ / FBSDF copyrigt notice. Affected files ... .. //depot/projects/vimage-commit2/src/usr.sbin/vimage/vimage.c#3 edit Differences ... ==== //depot/projects/vimage-commit2/src/usr.sbin/vimage/vimage.c#3 (text+ko) ==== @@ -1,6 +1,7 @@ /* - * Copyright (c) 2002, 2003, 2004 Marko Zec - * All rights reserved. + * Copyright (c) 2002-2004 Marko Zec + * Copyright (c) 2009 University of Zagreb + * Copyright (c) 2009 FreeBSD Foundation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -62,6 +63,8 @@ void vi_print(struct vi_req *vi_req) { + + printf("\"%s\":\n", vi_req->vi_name); printf(" %d sockets, %d ifnets\n", vi_req->vi_sock_count, vi_req->vi_if_count); }