From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20965 invoked by alias); 31 Jul 2008 15:38:53 -0000 Received: (qmail 20947 invoked by uid 9447); 31 Jul 2008 15:38:52 -0000 Date: Thu, 31 Jul 2008 15:38:00 -0000 Message-ID: <20080731153852.20945.qmail@sourceware.org> From: agk@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 lib/misc/last-path-component.h tools/lvmc ... Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2008-07/txt/msg00036.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: agk@sourceware.org 2008-07-31 15:38:52 Modified files: lib/misc : last-path-component.h tools : lvmcmdline.c Log message: remove now-redundant slash-stripping Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/misc/last-path-component.h.diff?cvsroot=lvm2&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/lvmcmdline.c.diff?cvsroot=lvm2&r1=1.67&r2=1.68 --- LVM2/lib/misc/last-path-component.h 2007/10/03 16:10:04 1.1 +++ LVM2/lib/misc/last-path-component.h 2008/07/31 15:38:51 1.2 @@ -21,7 +21,8 @@ static inline char *last_path_component(char const *name) { - char const *slash = strrchr (name, '/'); + char const *slash = strrchr(name, '/'); char const *res = slash ? slash + 1 : name; - return (char *) res; + + return (char *)res; } --- LVM2/tools/lvmcmdline.c 2008/06/06 19:28:35 1.67 +++ LVM2/tools/lvmcmdline.c 2008/07/31 15:38:52 1.68 @@ -1165,8 +1165,6 @@ _close_stray_fds(); base = last_path_component(argv[0]); - while (*base == '/') - base++; if (strcmp(base, "lvm") && strcmp(base, "lvm.static") && strcmp(base, "initrd-lvm")) alias = 1;