From: md@Linux.IT Date: Sun, 6 Feb 2005 00:00:04 +0000 (+0100) Subject: [PATCH] cdsymlinks.sh: trivial fix, the variable is initialized to '', not 0 X-Git-Tag: 052~15 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=0c50db890e838b6fa21708836af93ea736fc047d;ds=sidebyside [PATCH] cdsymlinks.sh: trivial fix, the variable is initialized to '', not 0 --- diff --git a/extras/cdsymlinks.sh b/extras/cdsymlinks.sh index e99be2e54..b2702e006 100644 --- a/extras/cdsymlinks.sh +++ b/extras/cdsymlinks.sh @@ -159,7 +159,7 @@ output () { COUNT=$(($COUNT+1)) done # If the target dev ($1) is the current dev ($i), we output its name. - if test $(($NUMBERED_LINKS)) -ne 0 || test "$COUNT" -eq 0; then + if test $(($NUMBERED_LINKS)) -ne 0 || test "$COUNT" = ''; then test "$i" = "$1" && echo -n " $2$COUNT" fi # If the link isn't in our "existing links" list, add it and increment