From c945f72fe539b63e694877cfbde174b7201a0c06 Mon Sep 17 00:00:00 2001 From: Marc Andre Tanner Date: Wed, 26 Mar 2008 16:55:16 +0100 Subject: [PATCH] Implement ciopfs_remove_orig_name. --- ciopfs.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ciopfs.c b/ciopfs.c index 0a1361e..ad23dce 100644 --- a/ciopfs.c +++ b/ciopfs.c @@ -165,6 +165,12 @@ static int ciopfs_set_orig_name_path(const char *path, const char *origpath) return 0; } +static int ciopfs_remove_orig_name(const char *path) +{ + debug("removing original file name of %s\n", path); + return lremovexattr(path, CIOPFS_ATTR_NAME); +} + static int ciopfs_getattr(const char *path, struct stat *st_data) { char *p = map_path(path); -- 2.11.4.GIT