diff options
author | Vlad Ionescu <vlad@lshift.net> | 2009-09-23 14:31:30 +0100 |
---|---|---|
committer | Vlad Ionescu <vlad@lshift.net> | 2009-09-23 14:31:30 +0100 |
commit | 73956170c3aaba621371e968d66d55323bca9756 (patch) | |
tree | 426cac8717673a82e60726439f45fca53c4dce1d /src/rabbit.erl | |
parent | 936e4de0ee9cf55ebb08246e2c367c8c64c66b51 (diff) | |
download | rabbitmq-server-73956170c3aaba621371e968d66d55323bca9756.tar.gz |
removing rabbit_misc:absolute_pathbug21285
Diffstat (limited to 'src/rabbit.erl')
-rw-r--r-- | src/rabbit.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index 2b292412..27f085c2 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -217,8 +217,7 @@ log_location(Type) -> app_location() -> {ok, Application} = application:get_application(), - rabbit_misc:absolute_path( - code:where_is_file(atom_to_list(Application) ++ ".app")). + filename:absname(code:where_is_file(atom_to_list(Application) ++ ".app")). %--------------------------------------------------------------------------- |