blob: 82a52fc6e39329df183a2fdc9771d74fe212167c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- libdal/file.c.orig Thu Dec 12 21:32:34 2002
+++ libdal/file.c Sat Aug 12 15:35:27 2006
@@ -14,6 +14,7 @@
#if defined(__freebsd__)
# define O_LARGEFILE 0
+# include <sys/disk.h>
#endif
#ifndef DJGPP
@@ -154,6 +155,15 @@
#endif
+#ifdef DIOCGMEDIASIZE
+
+ if (ioctl(*((int *)dal->entity), DIOCGMEDIASIZE, &size) >= 0)
+ return (count_t)(size / dal->blocksize);
+
+ file_save_error(dal);
+
+#endif
+
if ((max_off = lseek(*((int *)dal->entity), 0, SEEK_END)) == (off_t)-1) {
file_save_error(dal);
return 0;
|