14 Aug
2006
14 Aug
'06
7:42 p.m.
Kolbjørn Barmen wrote:
So how do I disable "until OK" from the bb command?
PS: congrats with the release.. cheers, cheers! :)
From looking at the source code:
else if (strcmp(pwalk->name, "untilok") == 0) {
if (strcasecmp(pwalk->value, "on") == 0) {
duration = -1;
scale = 1;
}
=============================================
I would wager that setting the duration to -1 will do it.
-Charles