* src/prefs_actions.c
authorMelvin Hadasht <melvin.hadasht@free.fr>
Sat, 18 Jan 2003 19:06:56 +0000 (19:06 +0000)
committerMelvin Hadasht <melvin.hadasht@free.fr>
Sat, 18 Jan 2003 19:06:56 +0000 (19:06 +0000)
Removed syntax limitation of only one '&' at the end of command.
Now actions that contain '>/dev/null 2>&1' are possible.

ChangeLog.claws
configure.ac
src/prefs_actions.c

index f06a6ad7308cda6375c864c17ee90b2df56df7bf..3c51719da61d2d993db9b6d1f64cfcd4545c6b4e 100644 (file)
@@ -1,3 +1,9 @@
+2003-01-18 [melvin]    0.8.8claws116
+
+       * src/prefs_actions.c
+               Removed syntax limitation of only one '&' at the end of command.
+                       Now actions that contain '>/dev/null 2>&1' are possible.
+
 2003-01-18 [melvin]    0.8.8claws115
 
        * src/prefs_actions.c
index 23ea2fd986829efc87a759cac3171a1f3810acfa..2cb820439517979e2c3b2f562bc820097fb3bc67 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws115
+EXTRA_VERSION=claws116
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 6a4e2e43f1582f56e587e35afc6daf46e3013710..5382d4a9fbc43e2f7f849df73eb90da6673e2f91 100644 (file)
@@ -551,8 +551,6 @@ static guint get_action_type(gchar *action)
                } else if (p[0] == '&') {
                        if (p[1] == 0x00)
                                action_type |= ACTION_ASYNC;
-                       else
-                               action_type = ACTION_ERROR;
                }
                p++;
        }