diff options
author | Niklas Nille Åkerström <nille.kungen[AT]gmail.com> | 2010-05-13 00:39:48 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:39:48 +0200 |
commit | ce34ad1f5cfc2e1454e87afcab561aa396bb8560 (patch) | |
tree | f62286e890c9504b417ed1221307dfcda07e479b /system/cdemu-daemon/cdemu-daemon-1.1.0-cdemud-daemon.diff | |
parent | e57f37f3c1d9976a6eb1db3388507589b29e7836 (diff) | |
download | slackbuilds-ce34ad1f5cfc2e1454e87afcab561aa396bb8560.tar.gz |
system/cdemu-daemon: Updated for version 1.1.0
Diffstat (limited to 'system/cdemu-daemon/cdemu-daemon-1.1.0-cdemud-daemon.diff')
-rw-r--r-- | system/cdemu-daemon/cdemu-daemon-1.1.0-cdemud-daemon.diff | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/system/cdemu-daemon/cdemu-daemon-1.1.0-cdemud-daemon.diff b/system/cdemu-daemon/cdemu-daemon-1.1.0-cdemud-daemon.diff new file mode 100644 index 0000000000..aeabac7cd1 --- /dev/null +++ b/system/cdemu-daemon/cdemu-daemon-1.1.0-cdemud-daemon.diff @@ -0,0 +1,30 @@ +--- trunk/cdemu-daemon/src/cdemud-daemon.c 2008/07/25 20:39:19 406 ++++ trunk/cdemu-daemon/src/cdemud-daemon.c 2008/07/25 20:39:47 407 +@@ -30,19 +30,19 @@ + #define BUF_SIZE (512 * (MAX_SECTORS + OTHER_SECTORS)) + + struct vhba_request { +- __u32 tag; +- __u32 lun; ++ guint32 tag; ++ guint32 lun; + #define MAX_COMMAND_SIZE 16 + +- __u8 cdb[MAX_COMMAND_SIZE]; +- __u8 cdb_len; +- __u32 data_len; ++ guint8 cdb[MAX_COMMAND_SIZE]; ++ guint8 cdb_len; ++ guint32 data_len; + }; + + struct vhba_response { +- __u32 tag; +- __u32 status; +- __u32 data_len; ++ guint32 tag; ++ guint32 status; ++ guint32 data_len; + }; + + |