From owner-svn-src-projects@FreeBSD.ORG Wed Dec 19 23:27:24 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C76DBE5; Wed, 19 Dec 2012 23:27:24 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 679A68FC0C; Wed, 19 Dec 2012 23:27:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBJNROtu011629; Wed, 19 Dec 2012 23:27:24 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBJNRO0s011626; Wed, 19 Dec 2012 23:27:24 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201212192327.qBJNRO0s011626@svn.freebsd.org> From: Brooks Davis Date: Wed, 19 Dec 2012 23:27:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244448 - projects/mtree/contrib/mtree X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Dec 2012 23:27:24 -0000 Author: brooks Date: Wed Dec 19 23:27:23 2012 New Revision: 244448 URL: http://svnweb.freebsd.org/changeset/base/244448 Log: Remove the -T flag. We won't be going that route. Modified: projects/mtree/contrib/mtree/mtree.8 projects/mtree/contrib/mtree/mtree.c Modified: projects/mtree/contrib/mtree/mtree.8 ============================================================================== --- projects/mtree/contrib/mtree/mtree.8 Wed Dec 19 21:00:22 2012 (r244447) +++ projects/mtree/contrib/mtree/mtree.8 Wed Dec 19 23:27:23 2012 (r244448) @@ -64,7 +64,7 @@ .Nd map a directory hierarchy .Sh SYNOPSIS .Nm -.Op Fl CcDdejLlMnPqrSTtUuWx +.Op Fl CcDdejLlMnPqrStUuWx .Op Fl i | Fl m .Op Fl E Ar tags .Op Fl f Ar spec @@ -307,18 +307,9 @@ of the files for which the keyword .Sy cksum was specified. The checksum is seeded with the specified value. -.It Fl T -.Em Do not -modify the modified time of existing files, the device type of devices, and -symbolic link targets, to match the specification. -This is the default on systems other than -.Fx . .It Fl t Modify the modified time of existing files, the device type of devices, and symbolic link targets, to match the specification. -This is the default on -.Fx -systems. .It Fl U Same as .Fl u Modified: projects/mtree/contrib/mtree/mtree.c ============================================================================== --- projects/mtree/contrib/mtree/mtree.c Wed Dec 19 21:00:22 2012 (r244447) +++ projects/mtree/contrib/mtree/mtree.c Wed Dec 19 23:27:23 2012 (r244448) @@ -79,12 +79,8 @@ main(int argc, char **argv) spec1 = stdin; spec2 = NULL; -#ifdef __FreeBSD__ - tflag = 1; -#endif - while ((ch = getopt(argc, argv, - "cCdDeE:f:I:ijk:K:lLmMnN:p:PqrR:s:StTuUWxX:")) + "cCdDeE:f:I:ijk:K:lLmMnN:p:PqrR:s:StuUWxX:")) != -1) { switch((char)ch) { case 'c': @@ -191,9 +187,6 @@ main(int argc, char **argv) case 't': tflag = 1; break; - case 'T': - tflag = 0; - break; case 'u': uflag = 1; break; @@ -270,7 +263,7 @@ usage(void) { fprintf(stderr, - "usage: %s [-CcDdejLlMnPqrSTtUuWx] [-i|-m] [-E tags]\n" + "usage: %s [-CcDdejLlMnPqrStUuWx] [-i|-m] [-E tags]\n" "\t\t[-f spec] [-f spec]\n" "\t\t[-I tags] [-K keywords] [-k keywords] [-N dbdir] [-p path]\n" "\t\t[-R keywords] [-s seed] [-X exclude-file]\n",