]> git.pld-linux.org Git - packages/eject.git/blob - eject-FHS.patch
- fixed build with new gettext
[packages/eject.git] / eject-FHS.patch
1 --- eject-2.0.13/eject.c.orig   2002-12-09 23:28:08.000000000 +0100
2 +++ eject-2.0.13/eject.c        2004-10-31 04:54:16.858729688 +0100
3 @@ -321,6 +321,11 @@
4         if (FileExists(buf))
5                 return buf;
6  
7 +       strcpy(buf, "/media/");
8 +       strcat(buf, name);
9 +       if (FileExists(buf))
10 +               return buf;
11 +
12         strcpy(buf, "/mnt/");
13         strcat(buf, name);
14         if (FileExists(buf))
This page took 0.104286 seconds and 3 git commands to generate.