diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-01-07 12:16:12 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-01-07 12:16:12 -0500 |
commit | 2be65619f90e1be79cc77102384eef2dde857e21 (patch) | |
tree | b3b52275aa0330202a0f39b3ea721bc6035ce71e /src/or | |
parent | 6661e16e7ca677cc6063b5aaf25da512d7cda8ad (diff) | |
download | tor-2be65619f90e1be79cc77102384eef2dde857e21.tar.gz tor-2be65619f90e1be79cc77102384eef2dde857e21.zip |
Fix wide lines in control.c
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/control.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/or/control.c b/src/or/control.c index c895a70a80..d9d1dfeb5e 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -1962,11 +1962,13 @@ static const getinfo_item_t getinfo_items[] = { "Number of versioning authorities agreeing on the status of the " "current version"), ITEM("address", misc, "IP address of this Tor host, if we can guess it."), - ITEM("traffic/read", misc, "Bytes read since the process was started."), - ITEM("traffic/written", misc, "Bytes written since the process was started."), + ITEM("traffic/read", misc,"Bytes read since the process was started."), + ITEM("traffic/written", misc, + "Bytes written since the process was started."), ITEM("process/pid", misc, "Process id belonging to the main tor process."), ITEM("process/uid", misc, "User id running the tor process."), - ITEM("process/user", misc,"Username under which the tor process is running."), + ITEM("process/user", misc, + "Username under which the tor process is running."), ITEM("process/descriptor-limit", misc, "File descriptor limit."), ITEM("dir-usage", misc, "Breakdown of bytes transferred over DirPort."), PREFIX("desc-annotations/id/", dir, "Router annotations by hexdigest."), |