Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <rpedde@us...> - 2008-04-26 22:47:59
|
Revision: 1723 http://mt-daapd.svn.sourceforge.net/mt-daapd/?rev=1723&view=rev Author: rpedde Date: 2008-04-26 15:47:44 -0700 (Sat, 26 Apr 2008) Log Message: ----------- Fix namespace issue on leopard for plugins Modified Paths: -------------- branches/release-1.2-pre/src/plugins/rsp.c Modified: branches/release-1.2-pre/src/plugins/rsp.c =================================================================== --- branches/release-1.2-pre/src/plugins/rsp.c 2008-04-26 21:23:39 UTC (rev 1722) +++ branches/release-1.2-pre/src/plugins/rsp.c 2008-04-26 22:47:44 UTC (rev 1723) @@ -39,21 +39,21 @@ void rsp_error(WS_CONNINFO *pwsc, PRIVINFO *ppi, int eno, char *estr); /* Globals */ -PLUGIN_OUTPUT_FN _pofn = { plugin_can_handle, plugin_handler, plugin_auth }; -PLUGIN_REND_INFO _pri[] = { +PLUGIN_OUTPUT_FN _rsp_pofn = { plugin_can_handle, plugin_handler, plugin_auth }; +PLUGIN_REND_INFO _rsp_pri[] = { { "_rsp._tcp", NULL }, { NULL, NULL } }; PLUGIN_INPUT_FN *_ppi; -PLUGIN_INFO _pi = { +PLUGIN_INFO _rsp_pi = { PLUGIN_VERSION, /* version */ PLUGIN_OUTPUT, /* type */ "rsp/" VERSION, /* server */ - &_pofn, /* output fns */ + &_rsp_pofn, /* output fns */ NULL, /* event fns */ NULL, /* transcode fns */ - _pri, /* rend info */ + _rsp_pri, /* rend info */ NULL /* transcode info */ }; @@ -152,7 +152,7 @@ */ PLUGIN_INFO *plugin_info(PLUGIN_INPUT_FN *ppi) { _ppi = ppi; - return &_pi; + return &_rsp_pi; } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |