about summary refs log tree commit diff
path: root/src/core/ppp/nm-pppd-plugin.c
diff options
context:
space:
mode:
authorJeremy Bicha <jeremy.bicha@canonical.com>2022-02-22 16:46:07 -0500
committerJeremy Bicha <jeremy.bicha@canonical.com>2022-02-22 16:46:07 -0500
commit297ac7f51b68aaa0e281336e6c6154bb2c913580 (patch)
treeff98cec3cc8eeb03b58cfeae184f2da4bfa6c93f /src/core/ppp/nm-pppd-plugin.c
parentc713c9f47084b639644c0b9a8bb04faa3ccd21e3 (diff)
parent7d8baf4ac0480a542f000c1201df85427a22332c (diff)
Update to upstream version '1.35.90
Diffstat (limited to 'src/core/ppp/nm-pppd-plugin.c')
-rw-r--r--src/core/ppp/nm-pppd-plugin.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/ppp/nm-pppd-plugin.c b/src/core/ppp/nm-pppd-plugin.c
index 5ffa7d17..e2e34d2a 100644
--- a/src/core/ppp/nm-pppd-plugin.c
+++ b/src/core/ppp/nm-pppd-plugin.c
@@ -33,14 +33,14 @@ char pppd_version[] = VERSION;
 
 static struct {
     GDBusConnection *dbus_connection;
-    char *           ipparam;
+    char            *ipparam;
 } gl;
 
 static void
 nm_phasechange(int arg)
 {
     NMPPPStatus ppp_status = NM_PPP_STATUS_UNKNOWN;
-    char *      ppp_phase;
+    char       *ppp_phase;
 
     g_return_if_fail(G_IS_DBUS_CONNECTION(gl.dbus_connection));
 
@@ -332,10 +332,10 @@ get_pap_check(void)
 static int
 get_credentials(char *username, char *password)
 {
-    gs_unref_variant GVariant *ret = NULL;
-    gs_free_error GError *error    = NULL;
-    const char *          my_username;
-    const char *          my_password;
+    gs_unref_variant GVariant *ret   = NULL;
+    gs_free_error GError      *error = NULL;
+    const char                *my_username;
+    const char                *my_password;
 
     if (!password) {
         /* pppd is checking pap support; return 1 for supported */