diff options
author | Greg Hudson <ghudson@mit.edu> | 1998-10-13 13:12:04 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 1998-10-13 13:12:04 +0000 |
commit | 28c7fc667a0e9b08e27d8a097195ae368448864b (patch) | |
tree | e223280d15b1032b2dbf787d75f2b2bbafd4e942 /server | |
parent | a2b86d1fc846ce6e3688f34cea1902294bca53cd (diff) |
Clean up the dump format: report addresses of clients, and fall back one
tab. The old dump format was written for when we grouped clients by host
manager.
Diffstat (limited to 'server')
-rw-r--r-- | server/client.c | 4 | ||||
-rw-r--r-- | server/subscr.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/server/client.c b/server/client.c index 2dca538..2c41b77 100644 --- a/server/client.c +++ b/server/client.c @@ -187,8 +187,8 @@ client_dump_clients(fp) for (i = 0; i < HASHSIZE; i++) { for (client = client_bucket[i]; client; client = client->next) { - fprintf(fp, "\t%d (%s):\n", ntohs(client->addr.sin_port), - client->principal->string); + fprintf(fp, "%s/%d (%s):\n", inet_ntoa(client->addr.sin_addr), + ntohs(client->addr.sin_port), client->principal->string); subscr_dump_subs(fp, client->subs); } } diff --git a/server/subscr.c b/server/subscr.c index b0cda3d..43f406d 100644 --- a/server/subscr.c +++ b/server/subscr.c @@ -1006,7 +1006,7 @@ subscr_dump_subs(fp, subs) return; for (; subs; subs = subs->next) { - fputs("\t\t'", fp); + fputs("\t'", fp); dump_quote(subs->dest.classname->string, fp); fputs("' '", fp); dump_quote(subs->dest.inst->string, fp); |