dlua-compat.c (dovecot-2.3.16) | : | dlua-compat.c (dovecot-2.3.17) | ||
---|---|---|---|---|
skipping to change at line 149 | skipping to change at line 149 | |||
return integer; | return integer; | |||
default: | default: | |||
break; | break; | |||
} | } | |||
/* not an integer */ | /* not an integer */ | |||
*isnum_r = 0; | *isnum_r = 0; | |||
return 0; | return 0; | |||
} | } | |||
#endif | #endif | |||
#if LUA_VERSION_NUM > 501 && LUA_VERSION_NUM < 504 | ||||
# undef lua_resume | ||||
int lua_resume_compat(lua_State *L, lua_State *from, int nargs, int *nresults) | ||||
{ | ||||
*nresults = 1; | ||||
return lua_resume(L, from, nargs); | ||||
} | ||||
#endif | ||||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 0 lines changed or added |