From 114580cd783855140cbd0fb34579564d21ab45fa Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Sun, 17 Jan 2010 20:47:28 +0000 Subject: [PATCH] Update find_directory to use a lowercase path for the on-disk trash location like more or less all other system dirs. Should be the last of the trash changes. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35135 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/os/find_directory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/libroot/os/find_directory.c b/src/system/libroot/os/find_directory.c index c737e0964e..d8c1b2ef79 100644 --- a/src/system/libroot/os/find_directory.c +++ b/src/system/libroot/os/find_directory.c @@ -201,7 +201,7 @@ find_directory(directory_which which, dev_t device, bool createIt, case B_TRASH_DIRECTORY: // TODO: eventually put that into the file system API? if (device == bootDevice || !strcmp(fsInfo.fsh_name, "bfs")) - template = "Trash"; // TODO: add suffix for current user + template = "trash"; // TODO: add suffix for current user else if (!strcmp(fsInfo.fsh_name, "fat")) template = "RECYCLED/_BEOS_"; break;