File: 0001_spelling-error.patch

package info (click to toggle)
dbus-test-runner 19.04.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,304 kB
  • sloc: sh: 4,268; ansic: 3,632; makefile: 520; xml: 151
file content (16 lines) | stat: -rw-r--r-- 1,357 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix typo in dbus-test-runner options overview
Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>

Index: dbus-test-runner/src/dbus-test-runner.c
===================================================================
--- dbus-test-runner.orig/src/dbus-test-runner.c
+++ dbus-test-runner/src/dbus-test-runner.c
@@ -200,7 +200,7 @@ static gchar * bustle_cmd = NULL;
 static gchar * bustle_datafile = NULL;
 
 static GOptionEntry general_options[] = {
-	{"dbus-daemon",  0,     0,                       G_OPTION_ARG_FILENAME,  &dbus_daemon,     "Path to the DBus deamon to use.  Defaults to 'dbus-daemon'.", "executable"},
+	{"dbus-daemon",  0,     0,                       G_OPTION_ARG_FILENAME,  &dbus_daemon,     "Path to the DBus daemon to use.  Defaults to 'dbus-daemon'.", "executable"},
 	{"dbus-config",  'd',   0,                       G_OPTION_ARG_FILENAME,  &dbus_configfile, "Configuration file for newly created DBus server.  Defaults to '" DEFAULT_SESSION_CONF "'.", "config_file"},
 	{"bustle-monitor", 0,   0,                       G_OPTION_ARG_FILENAME,  &bustle_cmd,      "Path to the Bustle DBus Monitor to use.  Defaults to 'bustle-dbus-monitor'.", "executable"},
 	{"bustle-data",  'b',   0,                       G_OPTION_ARG_FILENAME,  &bustle_datafile, "A file to write out data from the bustle logger to.", "data_file"},