Remove all the pending messages in the specified list. */
| 1853 | |
| 1854 | /* Remove all the pending messages in the specified list. */ |
| 1855 | void ldbFlushLog(list *log) { |
| 1856 | listNode *ln; |
| 1857 | |
| 1858 | while((ln = listFirst(log)) != NULL) |
| 1859 | listDelNode(log,ln); |
| 1860 | } |
| 1861 | |
| 1862 | /* Enable debug mode of Lua scripts for this client. */ |
| 1863 | void ldbEnable(client *c) { |
no test coverage detected