summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMikhail Zabaluev <mikhail.zabaluev@nokia.com>2008-10-08 19:21:40 +0300
committerMikhail Zabaluev <mikhail.zabaluev@nokia.com>2008-10-08 19:21:40 +0300
commiteb78e46ff1dad844ffe86c2b98d3469afb9142f6 (patch)
tree3c6a9aa7ff7a7b4ce26f53b9bb7b972341c7e822 /src
parent2d80bc40adcd4e6b2493772acdc7afb2910f5b53 (diff)
Alignment fix
Diffstat (limited to 'src')
-rw-r--r--src/sip-connection-helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sip-connection-helpers.c b/src/sip-connection-helpers.c
index d06bdf8..ff4fedd 100644
--- a/src/sip-connection-helpers.c
+++ b/src/sip-connection-helpers.c
@@ -671,9 +671,9 @@ priv_is_host (const gchar* str)
GError *error = NULL;
host_regex = g_regex_new ("^("
- "("DOMAIN"\\.)*"TLD"\\.?|" /* host name */
+ "("DOMAIN"\\.)*"TLD"\\.?|" /* host name */
"[0-9]{1,3}(\\.[0-9]{1,3}){3}|" /* IPv4 address */
- "\\[[0-9a-f:.]\\]" /* IPv6 address, sloppily */
+ "\\[[0-9a-f:.]\\]" /* IPv6 address, sloppily */
")$",
G_REGEX_CASELESS | G_REGEX_RAW | G_REGEX_OPTIMIZE, 0, &error);