Your message dated Fri, 4 Mar 2016 22:03:26 +0100
with message-id <[email protected]>
and subject line Re: Bug#557566: m_bbdb produces "unexpected operator"
has caused the Debian Bug report #557566,
regarding m_bbdb produces "unexpected operator"
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
557566: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557566
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: lbdb
Version: 0.36

With METHODS=m_bbdb

any query by lbdbq produces:

[: 1: unexpected operator
[: 1: 0: unexpected operator
lbdbq: no matches

I am using bash for my interactive shell, but dash for non-interactive shells.

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: lbdb
Source-Version: 0.37

On Sun, 22 Nov 2009, Jeffrey Ratcliffe wrote:

> Package: lbdb
> Version: 0.36
> 
> With METHODS=m_bbdb
> 
> any query by lbdbq produces:
> 
> [: 1: unexpected operator
> [: 1: 0: unexpected operator
> lbdbq: no matches
> 
> I am using bash for my interactive shell, but dash for
> non-interactive shells.

Seems that I missed to close this bug report, since it should be fixed
in 0.37:

lbdb (0.37) unstable; urgency=low

  * Fix bashisms in m_bbdb (Closes: #530113).
[...]

 -- Roland Rosenfeld <[email protected]>  Tue, 18 May 2010 20:03:18 +0200


diff --git a/m_bbdb.sh.in b/m_bbdb.sh.in
index 3ff10cb..fb2c5d7 100644
--- a/m_bbdb.sh.in
+++ b/m_bbdb.sh.in
@@ -39,7 +39,7 @@ m_bbdb_query()
                GNUCLIENT=gnuclient
            fi
         fi
-       if [ "$GNUCLIENT" == "no" ]; then
+       if [ "$GNUCLIENT" = "no" ]; then
            GNUCLIENT=
        fi
 
@@ -50,7 +50,7 @@ m_bbdb_query()
               success=1
           fi
         fi
-       if [ $success == 0 ]; then
+       if [ $success = 0 ]; then
            if [ -z "$EMACS" ]
            then
                if type emacs >/dev/null 2>&1; then

Tschoeeee

        Roland

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply via email to