diff options
| author | Colin Walters <walters@verbum.org> | 2003-05-28 21:26:03 +0000 | 
|---|---|---|
| committer | Colin Walters <walters@verbum.org> | 2003-05-28 21:26:03 +0000 | 
| commit | a2e144132e03a8d5bc289b727c747c9b0e6c0508 (patch) | |
| tree | fa1851ea7cb75326287e25a396f762daeed847b7 | |
| parent | 2d86773903f64543833b0de4b2f587760d2d811a (diff) | |
2003-05-28  Colin Walters  <walters@verbum.org>
	* tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | tools/dbus-monitor.c | 2 | 
2 files changed, 5 insertions, 1 deletions
| @@ -1,3 +1,7 @@ +2003-05-28  Colin Walters  <walters@verbum.org> + +	* tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/). +  2003-05-18  Anders Carlsson  <andersca@codefactory.se>  	* dbus/dbus-message.c (dbus_message_new): Remove @todo. diff --git a/tools/dbus-monitor.c b/tools/dbus-monitor.c index 9628c422..0829506a 100644 --- a/tools/dbus-monitor.c +++ b/tools/dbus-monitor.c @@ -64,7 +64,7 @@ main (int argc, char *argv[])      {        char *arg = argv[i]; -      if (!strcmp (arg, "--session")) +      if (!strcmp (arg, "--system"))  	type = DBUS_BUS_SYSTEM;        else if (!strcmp (arg, "--help"))  	usage (argv[0], 0); | 
