diff options
Diffstat (limited to 'mate-session/gsm-xsmp-server.c')
-rw-r--r-- | mate-session/gsm-xsmp-server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mate-session/gsm-xsmp-server.c b/mate-session/gsm-xsmp-server.c index 1566aba..719d65c 100644 --- a/mate-session/gsm-xsmp-server.c +++ b/mate-session/gsm-xsmp-server.c @@ -3,6 +3,7 @@ * Copyright (C) 2007 Novell, Inc. * Copyright (C) 2008 Red Hat, Inc. * Copyright (C) 2008 William Jon McCann <[email protected]> + * Copyright (C) 2012-2021 MATE Developers * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -509,9 +510,9 @@ update_iceauthority (GsmXsmpServer *server, } for (e = entries; e; e = e->next) { - IceAuthFileEntry *auth_entry = e->data; - IceWriteAuthFileEntry (fp, auth_entry); - IceFreeAuthFileEntry (auth_entry); + IceAuthFileEntry *auth_file_entry = e->data; + IceWriteAuthFileEntry (fp, auth_file_entry); + IceFreeAuthFileEntry (auth_file_entry); } g_slist_free (entries); @@ -528,7 +529,6 @@ update_iceauthority (GsmXsmpServer *server, return ok; } - static void setup_listener (GsmXsmpServer *server) { |