From d8e382fe444a5e1283aaa1cb4e82b386e25991a7 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Wed, 15 Feb 2012 16:09:33 +0000 Subject: [PATCH] Adapt regex for deletion. --- daemon/control_udp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/control_udp.c b/daemon/control_udp.c index c3dc0568a..f2bd429d8 100644 --- a/daemon/control_udp.c +++ b/daemon/control_udp.c @@ -203,7 +203,7 @@ struct control_udp *control_udp_new(struct poller *p, struct in6_addr ip, u_int1 "^(\\S+)\\s+(?:([ul])(\\S*)\\s+([^;]+)(?:;(\\S+))?\\s+" \ "(?:([\\d.]+)|([\\da-f:]+(?::ffff:[\\d.]+)?))" \ "\\s+(\\d+)\\s+(\\S+?);(\\d+)(?:\\s+(\\S+?);\\d+(?:\\s+.*)?)?\r?\n?$" \ - "|(d)(\\S*)\\s+([^;]+)(?:;(\\S+))?" \ + "|(d)(\\S*)\\s+([^;\\s]+)(?:;(\\S+))?\\s+" \ "|(v)(\\S*)(?:\\s+(\\S+))?)", PCRE_DOLLAR_ENDONLY | PCRE_DOTALL | PCRE_CASELESS, &errptr, &erroff, NULL); c->parse_ree = pcre_study(c->parse_re, 0, &errptr);