public inbox for lvm2-cvs@sourceware.org
help / color / mirror / Atom feed
* LVM2 lib/misc/last-path-component.h tools/lvmc ...
@ 2008-07-31 15:38 agk
  0 siblings, 0 replies; 2+ messages in thread
From: agk @ 2008-07-31 15:38 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

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;


^ permalink raw reply	[flat|nested] 2+ messages in thread

* LVM2 lib/misc/last-path-component.h tools/lvmc ...
@ 2008-11-12  9:53 zkabelac
  0 siblings, 0 replies; 2+ messages in thread
From: zkabelac @ 2008-11-12  9:53 UTC (permalink / raw)
  To: lvm-devel, lvm2-cvs

CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2008-11-12 09:53:33

Modified files:
	lib/misc       : last-path-component.h 
	tools          : lvmcmdline.c 

Log message:
	cleaner const char* usage for last_path_component()

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/lib/misc/last-path-component.h.diff?cvsroot=lvm2&r1=1.2&r2=1.3
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/tools/lvmcmdline.c.diff?cvsroot=lvm2&r1=1.73&r2=1.74

--- LVM2/lib/misc/last-path-component.h	2008/07/31 15:38:51	1.2
+++ LVM2/lib/misc/last-path-component.h	2008/11/12 09:53:33	1.3
@@ -19,10 +19,9 @@
 
 #include <string.h>
 
-static inline char *last_path_component(char const *name)
+static inline const char *last_path_component(char const *name)
 {
 	char const *slash = strrchr(name, '/');
-	char const *res = slash ? slash + 1 : name;
 
-	return (char *)res;
+	return (slash) ? slash + 1 : name;
 }
--- LVM2/tools/lvmcmdline.c	2008/11/12 09:49:06	1.73
+++ LVM2/tools/lvmcmdline.c	2008/11/12 09:53:33	1.74
@@ -483,7 +483,7 @@
 static struct command *_find_command(const char *name)
 {
 	int i;
-	char *base;
+	const char *base;
 
 	base = last_path_component(name);
 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-11-12  9:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-07-31 15:38 LVM2 lib/misc/last-path-component.h tools/lvmc agk
2008-11-12  9:53 zkabelac

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).