diff options
Diffstat (limited to 'src/mts_fpga_reg.c')
-rw-r--r-- | src/mts_fpga_reg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mts_fpga_reg.c b/src/mts_fpga_reg.c index 6955219..473868c 100644 --- a/src/mts_fpga_reg.c +++ b/src/mts_fpga_reg.c @@ -110,7 +110,7 @@ int hw_check(mts_hw *mts) { } fscanf(fp, "%[^\n]", mts->dev_hw); fclose(fp); - if (strstr(mts->dev_hw, "MTCAP")) { + if (strstr(mts->dev_hw, "MTCAP-0.1")) { if (mts->path != 0) { printf("Path argument is not supported on this device. Exiting.\n"); return MTAC_INVALID_HARDWARE; @@ -138,7 +138,7 @@ int hw_check(mts_hw *mts) { return MTAC_SUCCESS; } } else - printf("This software is licensed only for use on MultiTech products.\n"); + printf("This software is licensed only for supported MultiTech products.\n"); return MTAC_INVALID_HARDWARE; } |