mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
Fix str comp parameter in updater
This commit is contained in:
parent
56df0cf4ee
commit
d873a5d663
|
@ -157,7 +157,7 @@ bool CUpdater::MoveFile(const char *pFile)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(CONF_PLATFORM_LINUX)
|
#if !defined(CONF_PLATFORM_LINUX)
|
||||||
if(!str_comp_nocase(pFile + len - 4, ".so"))
|
if(!str_comp_nocase(pFile + len - 3, ".so"))
|
||||||
return Success;
|
return Success;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue