aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2016-01-03 15:20:09 +0200
committerSergey Poznyakoff <gray@gnu.org>2016-01-03 15:20:09 +0200
commit85f2fd8d2772506911e95c3e4a0cb2538594b274 (patch)
treed486caebbec25a05024fcd9bfbf99efa6832c2a2
parent6db017a32e379bb2eb7878771dea969f77c3168c (diff)
downloadpies-85f2fd8d2772506911e95c3e4a0cb2538594b274.tar.gz
pies-85f2fd8d2772506911e95c3e4a0cb2538594b274.tar.bz2
Minor changes
* configure.ac: Version 1.2.92 * src/ctl.c (ctlio_finalize_reply): Don't close connection on errors. * src/pies.h (PIES_PRINTFLIKE): New macro. (logmsg, logmsg_printf): Mark as printflike.
-rw-r--r--configure.ac4
-rw-r--r--src/ctl.c22
-rw-r--r--src/pies.h16
3 files changed, 21 insertions, 21 deletions
diff --git a/configure.ac b/configure.ac
index 1ee26ec..d1bb2a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,3 +1,3 @@
# This file is part of GNU Pies. -*- autoconf -*-
-# Copyright (C) 2009-2015 Sergey Poznyakoff
+# Copyright (C) 2009-2016 Sergey Poznyakoff
#
@@ -17,3 +17,3 @@
AC_PREREQ([2.63])
-AC_INIT([GNU Pies], [1.2.91], [bug-pies@gnu.org.ua])
+AC_INIT([GNU Pies], [1.2.92], [bug-pies@gnu.org.ua])
AC_CONFIG_SRCDIR([src/pies.h])
diff --git a/src/ctl.c b/src/ctl.c
index 4f56923..f7e46d0 100644
--- a/src/ctl.c
+++ b/src/ctl.c
@@ -657,18 +657,10 @@ ctlio_finalize_reply (struct ctlio *io)
- if (io->state & (CTL_INITIAL_STATE|CTL_AUTHENTICATED_STATE))
+ val = http_get_header (io->input.headers, "connection");
+ if (val)
{
- if (io->code / 100 == 2 || io->code == 401)
- {
- val = http_get_header (io->input.headers, "connection");
- if (val)
- {
- if (strcasecmp (val, "keep-alive") == 0)
- /* nothing */;
- else if (strcasecmp (val, "close") == 0)
- io->state = CTL_END_STATE;
- //FIXME: else?
- }
- }
- else
+ if (strcasecmp (val, "keep-alive") == 0)
+ /* nothing */;
+ else if (strcasecmp (val, "close") == 0)
io->state = CTL_END_STATE;
+ //FIXME: else?
}
@@ -1186,3 +1178,3 @@ ctl_open ()
logmsg (LOG_CRIT, "can't listen on control socket %s: %s",
- strerror (errno));
+ control.url->string, strerror (errno));
exit (EX_UNAVAILABLE);
diff --git a/src/pies.h b/src/pies.h
index 4bc57bd..34f1250 100644
--- a/src/pies.h
+++ b/src/pies.h
@@ -421,4 +421,12 @@ void diag_setup (int flags);
-void logmsg (int prio, const char *fmt, ...);
-void logmsg_printf (int prio, const char *fmt, ...);
+#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
+# define __attribute__(x)
+#endif
+
+#ifndef PIES_PRINTFLIKE
+# define PIES_PRINTFLIKE(fmt,narg) __attribute__ ((__format__ (__printf__, fmt, narg)))
+#endif
+
+void logmsg (int prio, const char *fmt, ...) PIES_PRINTFLIKE(2,3);
+void logmsg_printf (int prio, const char *fmt, ...) PIES_PRINTFLIKE(2,3);
void logmsg_vprintf (int prio, const char *fmt, va_list ap);
@@ -427,3 +435,3 @@ extern unsigned debug_level;
extern int source_info_option;
-void debug_msg (const char *fmt, ...);
+void debug_msg (const char *fmt, ...) PIES_PRINTFLIKE(1,2);
@@ -434,3 +442,3 @@ void debug_msg (const char *fmt, ...);
if (source_info_option) \
- logmsg_printf (LOG_DEBUG, "%s:%lu:%s: ", \
+ logmsg_printf (LOG_DEBUG, "%s:%d:%s: ", \
__FILE__, __LINE__, __FUNCTION__); \

Return to:

Send suggestions and report system problems to the System administrator.