(lndstr, natstr, shpstr): Fix string types from s_char[] to char[].

They were declared NSC_STRINGY in their selector descriptors, and
NSC_STRINGY is specified to represent char[].
(player): Get rid of s_char.
This commit is contained in:
Markus Armbruster 2005-10-03 10:35:44 +00:00
parent 30a4437714
commit 717b8e96be
4 changed files with 13 additions and 13 deletions

View file

@ -47,10 +47,10 @@
struct player {
struct emp_qelem queue;
empth_t *proc;
s_char hostaddr[32];
s_char hostname[512];
s_char client[128];
s_char userid[32];
char hostaddr[32];
char hostname[512]; /* may be empty */
char client[128]; /* may be empty */
char userid[32]; /* may be empty */
int validated;
natid cnum;
int state;