telnet_connection_t -> struct telnet_connection

Remove misleading typedef and redundant suffix from struct telnet_connection.
This commit is contained in:
Zachary T Welch
2009-11-13 08:07:36 -08:00
parent f2cbaba3cc
commit f7cd2aa0ef
2 changed files with 10 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ enum telnet_states
TELNET_STATE_ESCAPE,
};
typedef struct telnet_connection_s
struct telnet_connection
{
char *prompt;
enum telnet_states state;
@@ -61,7 +61,7 @@ typedef struct telnet_connection_s
int next_history;
int current_history;
int closed;
} telnet_connection_t;
};
struct telnet_service
{