summaryrefslogtreecommitdiff
path: root/src/settings/nm-secret-agent.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings/nm-secret-agent.c')
-rw-r--r--src/settings/nm-secret-agent.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/settings/nm-secret-agent.c b/src/settings/nm-secret-agent.c
index 8852aa2201..d6f040f980 100644
--- a/src/settings/nm-secret-agent.c
+++ b/src/settings/nm-secret-agent.c
@@ -157,7 +157,7 @@ _call_id_new(NMSecretAgent * self,
if (!priv->shutdown_wait_obj_registered) {
/* self has async requests (that keep self alive). As long as
- * we have pending requests, shutdown is blocked. */
+ * we have pending requests, shutdown is blocked. */
priv->shutdown_wait_obj_registered = TRUE;
nm_shutdown_wait_obj_register_object(G_OBJECT(self), "secret-agent");
}
@@ -488,11 +488,11 @@ nm_secret_agent_cancel_call(NMSecretAgent *self, NMSecretAgentCallId *call_id)
g_return_if_fail(!c_list_is_empty(&call_id->lst));
/* Theoretically, call-id already has a self pointer. But nm_secret_agent_cancel_call() has only
- * one user: NMAgentManager. And that one has the self-pointer at hand, so the only purpose of
- * the @self argument is to assert that we are cancelling the expected call.
- *
- * We could drop the @self argument, but that just remove an additional assert-check from
- * our code, without making a simplification for the only caller of this function. */
+ * one user: NMAgentManager. And that one has the self-pointer at hand, so the only purpose of
+ * the @self argument is to assert that we are cancelling the expected call.
+ *
+ * We could drop the @self argument, but that just remove an additional assert-check from
+ * our code, without making a simplification for the only caller of this function. */
g_return_if_fail(self == call_id->self);
priv = NM_SECRET_AGENT_GET_PRIVATE(self);
@@ -516,7 +516,7 @@ nm_secret_agent_cancel_call(NMSecretAgent *self, NMSecretAgentCallId *call_id)
_call_cancel_cb,
call_id);
/* we keep call-id alive, but it will be unlinked from priv->requests.
- * _call_cancel_cb() will finally free it later. */
+ * _call_cancel_cb() will finally free it later. */
free_call_id = FALSE;
}