Skip to content
This repository was archived by the owner on Jun 6, 2021. It is now read-only.

Commit

Permalink
Apparently this was backwards, causing the real hostname to be the vh…
Browse files Browse the repository at this point in the history
…ost, as well as the reverse happening.
  • Loading branch information
alyx committed Aug 25, 2011
1 parent 40fe2c3 commit bc62eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/protocol/plexus.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ static void m_uid(sourceinfo_t *si, int parc, char *parv[])
s = si->s;
slog(LG_DEBUG, "m_uid(): new user on `%s': %s", s->name, parv[0]);

u = user_add(parv[0], parv[4], parv[5], parv[9], parv[6], parv[7], parv[10], s, atoi(parv[2]));
u = user_add(parv[0], parv[4], parv[9], parv[5], parv[6], parv[7], parv[10], s, atoi(parv[2]));
if (u == NULL)
return;

Expand Down

0 comments on commit bc62eec

Please sign in to comment.