From: Felix Fietkau Date: Sat, 26 Jan 2008 11:17:33 +0000 (+0100) Subject: move get_filename as well X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fuci.git;a=commitdiff_plain;h=8ea07e430df35634c09dc63d8c0cb644522bbe69 move get_filename as well --- diff --git a/file.c b/file.c index 6f43715..7e5a8ac 100644 --- a/file.c +++ b/file.c @@ -564,6 +564,16 @@ int uci_load(struct uci_context *ctx, const char *name, struct uci_package **pac return uci_import(ctx, file, name, package); } +static inline char *get_filename(char *path) +{ + char *p; + + p = strrchr(path, '/'); + p++; + if (!*p) + return NULL; + return p; +} char **uci_list_configs(struct uci_context *ctx) { diff --git a/list.c b/list.c index 2142b71..066a9fd 100644 --- a/list.c +++ b/list.c @@ -215,14 +215,4 @@ found: return 0; } -static inline char *get_filename(char *path) -{ - char *p; - - p = strrchr(path, '/'); - p++; - if (!*p) - return NULL; - return p; -}