]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
make it more obvious
authorBrian West <brian@freeswitch.org>
Mon, 18 Dec 2006 20:08:45 +0000 (20:08 +0000)
committerBrian West <brian@freeswitch.org>
Mon, 18 Dec 2006 20:08:45 +0000 (20:08 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3700 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_loadable_module.c

index 0407bb46c1a3a78305843b1d30dc89571c9c22e5..a84d706d4a1666c837a8f309c77f90beb1e1e786 100644 (file)
@@ -292,7 +292,7 @@ static switch_status_t switch_loadable_module_load_file(char *filename, switch_l
                status = apr_dso_sym((apr_dso_handle_sym_t *)&load_func_ptr, dso, "switch_module_load");
 
                if (load_func_ptr == NULL) {
-                       err = "Cannot Load";
+                       err = "Cannot locate symbol 'switch_module_load' please make sure this is a vaild module.";
                        break;
                }