diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-06 14:25:25 -0500 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-02-06 14:26:31 -0500 |
commit | f5f711762c6dd199a5789a317eaa2e788fbe6bb5 (patch) | |
tree | eb091b2379bf3beb2391cb7501cd6fb39a4fcc9a | |
parent | Check polkit authorization asynchronously (diff) | |
download | openrc-settingsd-f5f711762c6dd199a5789a317eaa2e788fbe6bb5.tar.gz openrc-settingsd-f5f711762c6dd199a5789a317eaa2e788fbe6bb5.tar.bz2 openrc-settingsd-f5f711762c6dd199a5789a317eaa2e788fbe6bb5.zip |
newline at end of file
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | src/bus-utils.c | 2 | ||||
-rw-r--r-- | src/bus-utils.h | 2 | ||||
-rw-r--r-- | src/hostnamed.c | 2 | ||||
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/shell-utils.c | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -25,4 +25,4 @@ foo="bar" baz='Let'\''s go!' If openrc-settingsd fails to parse a settings file, it will refuse to modify -it.
\ No newline at end of file +it. diff --git a/src/bus-utils.c b/src/bus-utils.c index aef8037..f78f8f2 100644 --- a/src/bus-utils.c +++ b/src/bus-utils.c @@ -131,4 +131,4 @@ check_polkit_async (const gchar *unique_name, data->user_data = user_data; polkit_authority_get_async (NULL, check_polkit_authority_cb, data); -}
\ No newline at end of file +} diff --git a/src/bus-utils.h b/src/bus-utils.h index f2e80ea..4a57bb5 100644 --- a/src/bus-utils.h +++ b/src/bus-utils.h @@ -32,4 +32,4 @@ gboolean check_polkit_finish (GAsyncResult *res, GError **error); -#endif
\ No newline at end of file +#endif diff --git a/src/hostnamed.c b/src/hostnamed.c index c5914bd..c5f6f9c 100644 --- a/src/hostnamed.c +++ b/src/hostnamed.c @@ -476,4 +476,4 @@ hostnamed_destroy (void) g_object_unref (static_hostname_file); g_object_unref (machine_info_file); -}
\ No newline at end of file +} @@ -75,4 +75,4 @@ main (gint argc, gchar *argv[]) hostnamed_destroy (); shell_utils_destroy (); return 0; -}
\ No newline at end of file +} diff --git a/src/shell-utils.c b/src/shell-utils.c index 41a77db..30026a9 100644 --- a/src/shell-utils.c +++ b/src/shell-utils.c @@ -486,4 +486,4 @@ shell_utils_init (void) unquoted_regex = g_regex_new ("^(?:[^\\s\"'`\\$\\|&<>;]|\\\\[\\s\"'`\\$\\|&<>;]|\\$\\{)+", G_REGEX_ANCHORED|G_REGEX_MULTILINE, 0, NULL); g_assert (unquoted_regex != NULL); } -}
\ No newline at end of file +} |