diff options
Diffstat (limited to 'src/namestore/plugin_gtk_namestore_mx.c')
-rw-r--r-- | src/namestore/plugin_gtk_namestore_mx.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/namestore/plugin_gtk_namestore_mx.c b/src/namestore/plugin_gtk_namestore_mx.c index bc9b299b..9ab96cb0 100644 --- a/src/namestore/plugin_gtk_namestore_mx.c +++ b/src/namestore/plugin_gtk_namestore_mx.c | |||
@@ -1,22 +1,22 @@ | |||
1 | /* | 1 | /* |
2 | * This file is part of GNUnet | 2 | * This file is part of GNUnet |
3 | * Copyright (C) 2009-2013 GNUnet e.V. | 3 | * Copyright (C) 2009-2013 GNUnet e.V. |
4 | * | 4 | * |
5 | * GNUnet is free software; you can redistribute it and/or modify | 5 | * GNUnet is free software; you can redistribute it and/or modify |
6 | * it under the terms of the GNU General Public License as published | 6 | * it under the terms of the GNU General Public License as published |
7 | * by the Free Software Foundation; either version 3, or (at your | 7 | * by the Free Software Foundation; either version 3, or (at your |
8 | * option) any later version. | 8 | * option) any later version. |
9 | * | 9 | * |
10 | * GNUnet is distributed in the hope that it will be useful, but | 10 | * GNUnet is distributed in the hope that it will be useful, but |
11 | * WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | * General Public License for more details. | 13 | * General Public License for more details. |
14 | * | 14 | * |
15 | * You should have received a copy of the GNU General Public License | 15 | * You should have received a copy of the GNU General Public License |
16 | * along with GNUnet; see the file COPYING. If not, write to the | 16 | * along with GNUnet; see the file COPYING. If not, write to the |
17 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 | * Boston, MA 02110-1301, USA. | 18 | * Boston, MA 02110-1301, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | /** | 21 | /** |
22 | * @file namestore/plugin_gtk_namestore_mx.c | 22 | * @file namestore/plugin_gtk_namestore_mx.c |
@@ -58,7 +58,7 @@ mx_load (void *cls, gchar *n_value, GtkBuilder *builder) | |||
58 | uint16_t mx_pref; | 58 | uint16_t mx_pref; |
59 | char result[253 + 1]; | 59 | char result[253 + 1]; |
60 | 60 | ||
61 | if (2 != SSCANF (n_value, "%hu,%253s", &mx_pref, result)) | 61 | if (2 != sscanf (n_value, "%hu,%253s", &mx_pref, result)) |
62 | { | 62 | { |
63 | GNUNET_break (0); | 63 | GNUNET_break (0); |
64 | GNUNET_log (GNUNET_ERROR_TYPE_ERROR, | 64 | GNUNET_log (GNUNET_ERROR_TYPE_ERROR, |