From 86d19dcfa04879c863a1248851cd7854b68242cb Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 26 Jul 2006 13:03:13 +0000 Subject: Add a paramter for the path to create_name() --- common/textfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/textfile.c') diff --git a/common/textfile.c b/common/textfile.c index 076ec35b..f8b9545e 100644 --- a/common/textfile.c +++ b/common/textfile.c @@ -88,9 +88,9 @@ int create_file(const char *filename, const mode_t mode) return 0; } -int create_name(char *buf, size_t size, char *address, char *name) +int create_name(char *buf, size_t size, const char *path, const char *address, const char *name) { - return snprintf(buf, size, "%s/%s/%s", STORAGEDIR, address, name); + return snprintf(buf, size, "%s/%s/%s", path, address, name); } static inline char *find_key(char *map, const char *key, size_t len) -- cgit