aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/plugin_gtk_namestore_soa.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-09-14 17:33:29 +0200
committerChristian Grothoff <christian@grothoff.org>2019-09-14 17:33:29 +0200
commit99cb656ca9a40ecba3545d84b7c05f4193200b5b (patch)
treee3f6d2a66ab9a742b02531e3baa36801874912c5 /src/namestore/plugin_gtk_namestore_soa.c
parentdafc5d5bf5d693b63f0b7d4463273d0502cfc9d9 (diff)
downloadgnunet-gtk-99cb656ca9a40ecba3545d84b7c05f4193200b5b.tar.gz
gnunet-gtk-99cb656ca9a40ecba3545d84b7c05f4193200b5b.zip
fix ftbfs
Diffstat (limited to 'src/namestore/plugin_gtk_namestore_soa.c')
-rw-r--r--src/namestore/plugin_gtk_namestore_soa.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/namestore/plugin_gtk_namestore_soa.c b/src/namestore/plugin_gtk_namestore_soa.c
index 69b856f6..0dfc893e 100644
--- a/src/namestore/plugin_gtk_namestore_soa.c
+++ b/src/namestore/plugin_gtk_namestore_soa.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_soa.c 22 * @file namestore/plugin_gtk_namestore_soa.c
@@ -81,7 +81,7 @@ soa_load (void *cls, gchar *n_value, GtkBuilder *builder)
81 unsigned int soa_expire; 81 unsigned int soa_expire;
82 unsigned int soa_min; 82 unsigned int soa_min;
83 83
84 if (7 != SSCANF (n_value, 84 if (7 != sscanf (n_value,
85 "rname=%253s mname=%253s %u,%u,%u,%u,%u", 85 "rname=%253s mname=%253s %u,%u,%u,%u,%u",
86 soa_rname, 86 soa_rname,
87 soa_mname, 87 soa_mname,