shithub: orca

Download patch

ref: cdd950e455b4bfc62bb59c1ad8fa0fa85015e8f0
parent: 3a5d0c916ea11900852099871e2f492eb1aded6c
author: cancel <cancel@cancel.fm>
date: Mon Jan 27 19:55:40 EST 2020

Fix conf error messages to not have orca in their name

--- a/sysmisc.c
+++ b/sysmisc.c
@@ -395,11 +395,11 @@
   case Ezconf_w_conf_dir_not_dir:
     return "Config directory path is not a directory";
   case Ezconf_w_old_temp_file_stuck:
-    return "Unable to remove old orca.conf.tmp file";
+    return "Unable to remove old .conf.tmp file";
   case Ezconf_w_temp_file_perm_denied:
     return "Permission denied for config directory";
   case Ezconf_w_temp_open_failed:
-    return "Unable to open orca.conf.tmp for writing";
+    return "Unable to open .conf.tmp for writing";
   case Ezconf_w_temp_fsync_failed:
     return "fsync() reported an when writing temp file.\n"
            "Refusing to continue.";
@@ -406,7 +406,7 @@
   case Ezconf_w_temp_close_failed:
     return "Unable to close temp file";
   case Ezconf_w_rename_failed:
-    return "Unable to rename orca.conf.tmp to orca.conf";
+    return "Unable to rename .conf.tmp to .conf";
   case Ezconf_w_line_too_long:
     return "Line in file is too long";
   case Ezconf_w_existing_read_error: