From 2320323a344759567d702b257fb965646e6d8e7a Mon Sep 17 00:00:00 2001
From: unknown <jani@rhols221.adsl.netsonic.fi>
Date: Fri, 23 Jan 2004 15:31:16 +0200
Subject: [PATCH] Reverted an addition to be able to use ';' as a comment
 starting character elsewhere than in the beginning of a line, because it
 affected some innodb options that had ';' in them.

---
 mysys/default.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mysys/default.c b/mysys/default.c
index 81e1fd0637..d27efce27e 100644
--- a/mysys/default.c
+++ b/mysys/default.c
@@ -462,7 +462,7 @@ static char *remove_end_comment(char *ptr)
 	quote= 0;
     }
     /* We are not inside a comment */
-    if (!quote && (*ptr == '#' || *ptr == ';'))
+    if (!quote && *ptr == '#')
     {
       *ptr= 0;
       return ptr;
-- 
2.30.9