aboutsummaryrefslogtreecommitdiff
path: root/src/rc-misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rc-misc.h')
-rw-r--r--src/rc-misc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rc-misc.h b/src/rc-misc.h
index bcc6b544..c9f699eb 100644
--- a/src/rc-misc.h
+++ b/src/rc-misc.h
@@ -119,14 +119,14 @@ bool rc_conf_yesno (const char *var);
char **env_filter (void);
char **env_config (void);
-/* cbasename never modifies the argument. As such, if there is a trailing
+/* basename_c never modifies the argument. As such, if there is a trailing
* slash then an empty string is returned. */
-static inline const char *cbasename (const char *argv0) {
- char *l = strrchr (argv0, '/');
+static inline const char *basename_c (const char *path) {
+ const char *slash = strrchr (path, '/');
- if (l)
- return (++l);
- return (argv0);
+ if (slash)
+ return (++slash);
+ return (path);
}
#endif