summaryrefslogtreecommitdiffstats
path: root/misc-utils/eject.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc-utils/eject.c')
-rw-r--r--misc-utils/eject.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/misc-utils/eject.c b/misc-utils/eject.c
index 8d8a8bf3f..de0387823 100644
--- a/misc-utils/eject.c
+++ b/misc-utils/eject.c
@@ -292,13 +292,6 @@ static int FileExists(const char *name)
*
* foo (if foo starts with '.' or '/')
* /dev/foo
- * /media/foo
- * /mnt/foo
- * /dev/cdroms/foo
- * /dev/cdroms/foo0
- * /dev/dsk/foo
- * /dev/rdsk/foo
- * ./foo
*
* If found, return the full path. If not found, return 0.
* Returns pointer to dynamically allocated string.
@@ -320,44 +313,6 @@ static char *find_device(const char *name)
if (FileExists(buf))
return buf;
- strcpy(buf, "/media/");
- strcat(buf, name);
- if (FileExists(buf))
- return buf;
-
- strcpy(buf, "/mnt/");
- strcat(buf, name);
- if (FileExists(buf))
- return buf;
-
- /* for devfs under Linux */
- strcpy(buf, "/dev/cdroms/");
- strcat(buf, name);
- if (FileExists(buf))
- return buf;
-
- strcpy(buf, "/dev/cdroms/");
- strcat(buf, name);
- strcat(buf, "0");
- if (FileExists(buf))
- return buf;
-
- /* for devfs under Solaris */
- strcpy(buf, "/dev/rdsk/");
- strcat(buf, name);
- if (FileExists(buf))
- return buf;
-
- strcpy(buf, "/dev/dsk/");
- strcat(buf, name);
- if (FileExists(buf))
- return buf;
-
- strcpy(buf, "./");
- strcat(buf, name);
- if (FileExists(buf))
- return buf;
-
free(buf);
buf = 0;
return 0;