From 2e0ac66c6c13c670bca92e7a333358554769f638 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Thu, 30 Jun 2011 16:33:04 -0400 Subject: [PATCH] Don't remove the config directory on destroy Signed-off-by: David Goulet --- lttng/conf.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lttng/conf.c b/lttng/conf.c index 1cf0907ad..57aaf7b2d 100644 --- a/lttng/conf.c +++ b/lttng/conf.c @@ -173,11 +173,6 @@ void config_destroy(char *path) perror("remove config file"); } - ret = rmdir(path); - if (ret < 0) { - perror("rmdir config dir"); - } - free(config_path); } -- 2.34.1