Uplink: use serverid for login command again

This commit is contained in:
Heikki Hannikainen 2013-03-13 23:14:51 +02:00
parent f99ca2f8f9
commit e018124ff8
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ int uplink_login_handler(struct worker_t *self, struct client_t *c, int l4proto,
}
// TODO: The uplink login command here could maybe be improved to send a filter command.
len = sprintf(buf, "user %s pass %s vers %s\r\n", c->username, passcode, verstr_aprsis);
len = sprintf(buf, "user %s pass %s vers %s\r\n", serverid, passcode, verstr_aprsis);
hlog(LOG_DEBUG, "%s: my login string: \"%.*s\"", c->addr_rem, len-2, buf, len);