$OpenBSD: patch-pan_tasks_nntp_cc,v 1.1 2018/04/12 18:10:27 jasper Exp $

https://svnweb.freebsd.org/ports/head/news/pan/files/patch-c%2B%2B11?revision=458276&view=markup

Index: pan/tasks/nntp.cc
--- pan/tasks/nntp.cc.orig
+++ pan/tasks/nntp.cc
@@ -355,7 +355,7 @@ NNTP :: xover (const Quark   & group,
    _listener = l;
 
    enter_group(group);
-   _commands.push_back (build_command ("XOVER %"G_GUINT64_FORMAT"-%"G_GUINT64_FORMAT"\r\n", low, high));
+   _commands.push_back (build_command ("XOVER %" G_GUINT64_FORMAT "-%" G_GUINT64_FORMAT "\r\n", low, high));
    write_next_command ();
 }
 
@@ -368,7 +368,7 @@ NNTP :: xzver (const Quark   & group,
    _listener = l;
 
    enter_group(group);
-   _commands.push_back (build_command ("XZVER %"G_GUINT64_FORMAT"-%"G_GUINT64_FORMAT"\r\n", low, high));
+   _commands.push_back (build_command ("XZVER %" G_GUINT64_FORMAT "-%" G_GUINT64_FORMAT "\r\n", low, high));
    write_next_command ();
 }
 
@@ -409,7 +409,7 @@ NNTP :: article (const Quark     & group,
 
    enter_group(group);
 
-   _commands.push_back (build_command ("ARTICLE %"G_GUINT64_FORMAT"\r\n", article_number));
+   _commands.push_back (build_command ("ARTICLE %" G_GUINT64_FORMAT "\r\n", article_number));
 
    write_next_command ();
 }
@@ -451,7 +451,7 @@ NNTP :: get_headers (const Quark     & group,
 
    enter_group(group);
 
-   _commands.push_back (build_command ("HEAD %"G_GUINT64_FORMAT"\r\n", article_number));
+   _commands.push_back (build_command ("HEAD %" G_GUINT64_FORMAT "\r\n", article_number));
 
    write_next_command ();
 }
@@ -479,7 +479,7 @@ NNTP :: get_body (const Quark     & group,
 
    enter_group(group);
 
-   _commands.push_back (build_command ("BODY %"G_GUINT64_FORMAT"\r\n", article_number));
+   _commands.push_back (build_command ("BODY %" G_GUINT64_FORMAT "\r\n", article_number));
 
    write_next_command ();
 }
