summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:54:36 +0000
committerfcolin2007-02-01 09:54:36 +0000
commit22ace65033487a05b0518152b14e24de6934cc44 (patch)
tree096867441ed5f4318e1a6b8b9fa0c2491bae740e /CSharp/Ivy/IvyPPC
parentb832c0019b2fd611dfafdf8bf9308813f0eee8be (diff)
downloadivy-csharp-22ace65033487a05b0518152b14e24de6934cc44.zip
ivy-csharp-22ace65033487a05b0518152b14e24de6934cc44.tar.gz
ivy-csharp-22ace65033487a05b0518152b14e24de6934cc44.tar.bz2
ivy-csharp-22ace65033487a05b0518152b14e24de6934cc44.tar.xz
Utilisateur : Fcolin Date : 2/02/04 Heure : 16:31 Archivé dans $/EScribe/Ivy Commentaire: (vss 20)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r--CSharp/Ivy/IvyPPC/Ivy.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyPPC/Ivy.cs b/CSharp/Ivy/IvyPPC/Ivy.cs
index ba25733..cfec5cb 100644
--- a/CSharp/Ivy/IvyPPC/Ivy.cs
+++ b/CSharp/Ivy/IvyPPC/Ivy.cs
@@ -593,7 +593,7 @@ namespace IvyBus
internal bool CheckRegexp(String exp)
{
bool regexp_ok = true;
- if (exp.StartsWith("^") && sent_messageClasses != null)
+ if ((sent_messageClasses != null) && exp.StartsWith("^") )
{
regexp_ok = false;
foreach (string exp_class in sent_messageClasses)