Add support to load versioned libraries

Linux libraries, including the ipmi plugins, can be versioned,
with suffix .so.*
Add support in ipmid to find and load versioned libraries.
There seems to not be an issue if ipmid loads the same library
twice (a non-versioned and versioned) as with the cases where
a symlink .so points to a .so.* library.

Change-Id: I96d73e90dfec01c1a830dab4e6c20797b6130528
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/ipmid.C b/ipmid.C
index 374ede2..960f5dc 100644
--- a/ipmid.C
+++ b/ipmid.C
@@ -305,8 +305,14 @@
     char dname_copy[4] = {0};
 
     // We want to avoid checking for everything and isolate to the ones having
-    // .so in them.
-    if(strstr(entry->d_name, IPMI_PLUGIN_EXTN))
+    // .so.* or .so in them.
+    // Check for versioned libraries .so.*
+    if(strstr(entry->d_name, IPMI_PLUGIN_SONAME_EXTN))
+    {
+        return 1;
+    }
+    // Check for non versioned libraries .so
+    else if(strstr(entry->d_name, IPMI_PLUGIN_EXTN))
     {
         // It is possible that .so could be anywhere in the string but unlikely
         // But being careful here. Get the base address of the string, move