Blame SOURCES/0051-Ticket-48538-Failed-to-delete-old-semaphore.patch

61f723
From bbc63ef4dab6c275b1d8b8fe6439483309781401 Mon Sep 17 00:00:00 2001
61f723
From: William Brown <firstyear@redhat.com>
61f723
Date: Fri, 12 May 2017 10:09:32 +1000
61f723
Subject: [PATCH] Ticket 48538 - Failed to delete old semaphore
61f723
61f723
Bug Description:  I misunderstood the sem_unlink call, and logged
61f723
the wrong filepath.
61f723
61f723
Fix Description:  Fix the file path of the semaphore.
61f723
61f723
https://pagure.io/389-ds-base/issue/48538
61f723
61f723
Author: wibrown
61f723
61f723
Review by: mreynolds (Thanks!)
61f723
61f723
(cherry picked from commit b81c8ba38c29e15e13b0dd0bf6f5d3c773d31b20)
61f723
---
61f723
 ldap/servers/slapd/snmp_collator.c | 12 ++++++------
61f723
 1 file changed, 6 insertions(+), 6 deletions(-)
61f723
61f723
diff --git a/ldap/servers/slapd/snmp_collator.c b/ldap/servers/slapd/snmp_collator.c
61f723
index 21043d9..2deab91 100644
61f723
--- a/ldap/servers/slapd/snmp_collator.c
61f723
+++ b/ldap/servers/slapd/snmp_collator.c
61f723
@@ -458,23 +458,23 @@ snmp_collator_create_semaphore(void)
61f723
              * around.  Recreate it since we don't know what state it is in. */
61f723
             if (sem_unlink(stats_sem_name) != 0) {
61f723
                 slapi_log_err(SLAPI_LOG_EMERG, "snmp_collator_create_semaphore",
61f723
-                        "Failed to delete old semaphore for stats file (%s). "
61f723
-                        "Error %d (%s).\n", stats_sem_name, errno, slapd_system_strerror(errno) );
61f723
+                        "Failed to delete old semaphore for stats file (/dev/shm/sem.%s). "
61f723
+                        "Error %d (%s).\n", stats_sem_name + 1, errno, slapd_system_strerror(errno) );
61f723
                 exit(1);
61f723
             }
61f723
 
61f723
             if ((stats_sem = sem_open(stats_sem_name, O_CREAT | O_EXCL, SLAPD_DEFAULT_FILE_MODE, 1)) == SEM_FAILED) {
61f723
                 /* No dice */
61f723
                 slapi_log_err(SLAPI_LOG_EMERG, "snmp_collator_create_semaphore",
61f723
-                        "Failed to create semaphore for stats file (%s). Error %d (%s).\n",
61f723
-                        stats_sem_name, errno, slapd_system_strerror(errno) );
61f723
+                        "Failed to create semaphore for stats file (/dev/shm/sem.%s). Error %d (%s).\n",
61f723
+                        stats_sem_name + 1, errno, slapd_system_strerror(errno) );
61f723
                 exit(1);
61f723
             }
61f723
         } else {
61f723
             /* Some other problem occurred creating the semaphore. */
61f723
             slapi_log_err(SLAPI_LOG_EMERG, "snmp_collator_create_semaphore",
61f723
-                    "Failed to create semaphore for stats file (%s). Error %d.(%s)\n",
61f723
-                    stats_sem_name, errno, slapd_system_strerror(errno) );
61f723
+                    "Failed to create semaphore for stats file (/dev/shm/sem.%s). Error %d.(%s)\n",
61f723
+                    stats_sem_name + 1, errno, slapd_system_strerror(errno) );
61f723
             exit(1);
61f723
         }
61f723
     }
61f723
-- 
61f723
2.9.4
61f723