chiark / gitweb /
Replace s/Dropin/DropIn/
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 2 Apr 2013 14:24:45 +0000 (10:24 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 2 Apr 2013 14:24:51 +0000 (10:24 -0400)
src/core/dbus-unit.c
src/core/dbus-unit.h
src/core/unit.c

index f4133865538fdc8429a65a58d12faef25a5ad07f..5f1b2afd5b1692def9f9e9e031807e16f6fa20bc 100644 (file)
@@ -1284,7 +1284,7 @@ const BusProperty bus_unit_properties[] = {
         { "SubState",             bus_unit_append_sub_state,          "s", 0 },
         { "FragmentPath",         bus_property_append_string,         "s", offsetof(Unit, fragment_path),                              true },
         { "SourcePath",           bus_property_append_string,         "s", offsetof(Unit, source_path),                                true },
-        { "DropinPaths",          bus_property_append_strv,          "as", offsetof(Unit, dropin_paths),                               true },
+        { "DropInPaths",          bus_property_append_strv,          "as", offsetof(Unit, dropin_paths),                               true },
         { "UnitFileState",        bus_unit_append_file_state,         "s", 0 },
         { "InactiveExitTimestamp",bus_property_append_usec,           "t", offsetof(Unit, inactive_exit_timestamp.realtime)   },
         { "InactiveExitTimestampMonotonic", bus_property_append_usec, "t", offsetof(Unit, inactive_exit_timestamp.monotonic)  },
index e4c5666d8fce1a260f2334b13c5c1170888f2e80..acd1ddbe78db78b4fb9ee59532ce084ee7cff9d6 100644 (file)
@@ -88,7 +88,7 @@
         "  <property name=\"RequiresMountsFor\" type=\"as\" access=\"read\"/>\n" \
         "  <property name=\"Description\" type=\"s\" access=\"read\"/>\n" \
         "  <property name=\"SourcePath\" type=\"s\" access=\"read\"/>\n" \
-        "  <property name=\"DropinPaths\" type=\"as\" access=\"read\"/>\n" \
+        "  <property name=\"DropInPaths\" type=\"as\" access=\"read\"/>\n" \
         "  <property name=\"Documentation\" type=\"as\" access=\"read\"/>\n" \
         "  <property name=\"LoadState\" type=\"s\" access=\"read\"/>\n" \
         "  <property name=\"ActiveState\" type=\"s\" access=\"read\"/>\n" \
index 75a49d5e24cae9a78f2c1db36f3cd1ce82456f4e..91a00edf7196ab58dfcee3f03099102d31dcc895 100644 (file)
@@ -698,7 +698,7 @@ void unit_dump(Unit *u, FILE *f, const char *prefix) {
                 fprintf(f, "%s\tSource Path: %s\n", prefix, u->source_path);
 
         STRV_FOREACH(j, u->dropin_paths)
-                fprintf(f, "%s\tDropin Path: %s\n", prefix, *j);
+                fprintf(f, "%s\tDropIn Path: %s\n", prefix, *j);
 
         if (u->job_timeout > 0)
                 fprintf(f, "%s\tJob Timeout: %s\n", prefix, format_timespan(timespan, sizeof(timespan), u->job_timeout));