telnet_service_t -> struct telnet_service

Remove misleading typedef and redundant suffix from struct telnet_service.
This commit is contained in:
Zachary T Welch
2009-11-13 08:06:56 -08:00
parent 45a165a432
commit e01a0be576
2 changed files with 4 additions and 4 deletions

View File

@@ -63,10 +63,10 @@ typedef struct telnet_connection_s
int closed;
} telnet_connection_t;
typedef struct telnet_service_s
struct telnet_service
{
char *banner;
} telnet_service_t;
};
int telnet_init(char *banner);
int telnet_register_commands(command_context_t *command_context);