diff --git a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java index 034812bfcd..7f4ee150c1 100644 --- a/Core/src/org/sleuthkit/autopsy/casemodule/Case.java +++ b/Core/src/org/sleuthkit/autopsy/casemodule/Case.java @@ -1122,7 +1122,7 @@ public class Case { */ //Deny ability to add a data source if the special admin access file is present. - File denyAddDataSourcePermissions = new File(PlatformUtil.getUserConfigDirectory(), "_dsp"); + File denyAddDataSourcePermissions = new File(PlatformUtil.getUserConfigDirectory(), "_ndsp"); if(!denyAddDataSourcePermissions.exists()) { CallableSystemAction.get(AddImageAction.class).setEnabled(true); }