summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2012-05-23 17:57:55 -0400
committerDavid Zeuthen <davidz@redhat.com>2012-05-23 17:57:55 -0400
commitd11c872dc2f14fb4b1661740e311087aa188263d (patch)
tree1b6e2dc6a8d85bbe9f0a7cb9aeefbfb0f8c626ca
parent956d4e81d0dbb5182a7070f6367c391d69924270 (diff)
Use "rules", not "scripts" to refer to files in rules.d
Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r--src/polkitbackend/polkitbackendjsauthority.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/polkitbackend/polkitbackendjsauthority.c b/src/polkitbackend/polkitbackendjsauthority.c
index 39a6376..297b7f2 100644
--- a/src/polkitbackend/polkitbackendjsauthority.c
+++ b/src/polkitbackend/polkitbackendjsauthority.c
@@ -226,7 +226,7 @@ load_scripts (PolkitBackendJsAuthority *authority)
GDir *dir = NULL;
polkit_backend_authority_log (POLKIT_BACKEND_AUTHORITY (authority),
- "Loading scripts from directory %s",
+ "Loading rules from directory %s",
dir_name);
dir = g_dir_open (dir_name,
@@ -288,7 +288,7 @@ load_scripts (PolkitBackendJsAuthority *authority)
}
polkit_backend_authority_log (POLKIT_BACKEND_AUTHORITY (authority),
- "Finished loading, compiling and executing %d scripts",
+ "Finished loading, compiling and executing %d rules",
num_scripts);
g_list_free_full (files, g_free);
}
@@ -351,7 +351,7 @@ on_dir_monitor_changed (GFileMonitor *monitor,
event_type == G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT))
{
polkit_backend_authority_log (POLKIT_BACKEND_AUTHORITY (authority),
- "Reloading scripts");
+ "Reloading rules");
reload_scripts (authority);
}
g_free (name);