diff options
author | Adam <Adam@anope.org> | 2011-05-23 04:41:51 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-05-23 04:41:51 -0400 |
commit | 8bf8832b70dea28e2048d5952ee03247f12bda92 (patch) | |
tree | f76f670690c105ec8f9ca079d868e930fd8f205b /modules/core/os_update.cpp | |
parent | 4dd7e261f5704569856b5854dcc1f68010f0aaad (diff) |
Rewrote the signal handling to use sigaction
Diffstat (limited to 'modules/core/os_update.cpp')
-rw-r--r-- | modules/core/os_update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/os_update.cpp b/modules/core/os_update.cpp index 9f85d8b64..d4793c124 100644 --- a/modules/core/os_update.cpp +++ b/modules/core/os_update.cpp @@ -25,7 +25,7 @@ class CommandOSUpdate : public Command CommandReturn Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) { source.Reply(_("Updating databases.")); - save_data = true; + save_databases(); return MOD_CONT; } |