diff options
| author | Michael Biebl <biebl@debian.org> | 2022-02-14 19:24:33 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-02-14 19:24:33 +0100 |
| commit | 95864d59ac5530f59fe277580cc13f44b6de5b64 (patch) | |
| tree | 617239c0147c38efedf639d325cd56e8c7fb8be9 /src/core/ppp/nm-pppd-plugin.c | |
| parent | 1628eda029ba4dede8d4d45572c6b60367882436 (diff) | |
| parent | 2f94dba7385fd0e0ef19a06eb4a2fcf6c43d7946 (diff) | |
Update upstream source from tag 'upstream/1.35.91'
Update to upstream version '1.35.91' with Debian dir d8c1bf4c615814324dba64d19fe27402339c67f5
Diffstat (limited to 'src/core/ppp/nm-pppd-plugin.c')
| -rw-r--r-- | src/core/ppp/nm-pppd-plugin.c | 12 |
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 */ |