#endif
};
-void initialize_iterface_v0_handler(void)
+void initialize_interface_v0_handler(void)
{
interface_v0_impl.interface.v0.comcode[PROTOCOL_BINARY_CMD_GET]= get_command_handler;
interface_v0_impl.interface.v0.comcode[PROTOCOL_BINARY_CMD_SET]= set_command_handler;
* We need to initialize the handlers manually due to a bug in the
* warnings generated by struct initialization in gcc (all the way up to 4.4)
*/
- initialize_iterface_v0_handler();
+ initialize_interface_v0_handler();
while ((cmd= getopt(argc, argv, "v1p:?")) != EOF)
{
#ifndef MEMCACHED_LIGHT_H
#define MEMCACHED_LIGHT_H
-extern void initialize_iterface_v0_handler(void);
+extern void initialize_interface_v0_handler(void);
#endif