Load sg3_utils-1.09 into trunk/.
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@43 6180dd3e-e324-4e3e-922d-17de1ae2f315
diff --git a/examples/sg_simple_aio.c b/examples/sg_simple_aio.c
index 127629a..bc5cccf 100644
--- a/examples/sg_simple_aio.c
+++ b/examples/sg_simple_aio.c
@@ -9,7 +9,7 @@
#include <sys/stat.h>
#include <libaio.h>
#include "sg_include.h"
-#include "sg_err.h"
+#include "sg_lib.h"
/* This is a simple program executing a SCSI INQUIRY command and a
TEST UNIT READY command using the SCSI generic (sg) driver
@@ -149,10 +149,10 @@
/* now for the error processing */
ok = 0;
switch (sg_err_category3(&io_hdr)) {
- case SG_ERR_CAT_CLEAN:
+ case SG_LIB_CAT_CLEAN:
ok = 1;
break;
- case SG_ERR_CAT_RECOVERED:
+ case SG_LIB_CAT_RECOVERED:
printf("Recovered error on INQUIRY, continuing\n");
ok = 1;
break;
@@ -193,10 +193,10 @@
/* now for the error processing */
ok = 0;
switch (sg_err_category3(&io_hdr)) {
- case SG_ERR_CAT_CLEAN:
+ case SG_LIB_CAT_CLEAN:
ok = 1;
break;
- case SG_ERR_CAT_RECOVERED:
+ case SG_LIB_CAT_RECOVERED:
printf("Recovered error on Test Unit Ready, continuing\n");
ok = 1;
break;