mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
6e90b14cc1
Added a patch to fix a symbol warning. Thanks to crumb on irc for the report. Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
16 lines
618 B
Diff
16 lines
618 B
Diff
--- src/tsocks.c 2011-10-25 17:49:50.000000000 -0400
|
|
+++ src/tsocks.c 2012-02-21 11:09:20.000000000 -0500
|
|
@@ -175,9 +175,9 @@
|
|
#define LOAD_ERROR(s,l) { \
|
|
char *error; \
|
|
error = dlerror(); \
|
|
- show_msg(l, "The symbol %s() was not found in any shared " \
|
|
- "library. The error reported was: %s!\n", s, \
|
|
- (error)?error:"not found"); \
|
|
+ if (error) \
|
|
+ show_msg(l, "The symbol %s() was not found in any shared " \
|
|
+ "library. The error reported was: %s!\n", s, error); \
|
|
dlerror(); \
|
|
}
|
|
pthread_mutex_lock(&torsocks_init_mutex);
|
|
|