summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/globals.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 3895bd76a7..085dfc8e59 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -204,10 +204,8 @@ lotsa_files_please ()
error << string_compose (_("Could not set system open files limit to %1"), rl.rlim_cur) << endmsg;
}
} else {
- if (rl.rlim_cur == RLIM_INFINITY) {
- info << _("Removed open file count limit. Excellent!") << endmsg;
- } else {
- info << string_compose (_("%1 will be limited to %2 open files"), PROGRAM_NAME, rl.rlim_cur) << endmsg;
+ if (rl.rlim_cur != RLIM_INFINITY) {
+ info << string_compose (_("Your system is configured to limit %1 to only %2 open files"), PROGRAM_NAME, rl.rlim_cur) << endmsg;
}
}
} else {