~hww3/caudium

93d5a75fba08db71b832716377276978cdd7888d — William Welliver 2 years ago 47931f4
storage: method "None" was missing stop function. should fix error on shutdown
1 files changed, 5 insertions(+), 0 deletions(-)

M server/etc/modules/Storage.pmod/Methods.pmod/None.pike
M server/etc/modules/Storage.pmod/Methods.pmod/None.pike => server/etc/modules/Storage.pmod/Methods.pmod/None.pike +5 -0
@@ 46,6 46,11 @@ protected string version = sprintf("%d.%d.%d", __MAJOR__, __MINOR__, __BUILD__);
void create() {
}

void stop()
{
  // we don't have to do anything!
}

//!
void store(string namespace, string key, string value) {
}