~ubuntu-branches/ubuntu/saucy/dahdi-tools/saucy

« back to all changes in this revision

Viewing changes to debian/patches/bashism

  • Committer: Bazaar Package Importer
  • Author(s): Jean-Michel Dault, Tzafrir Cohen
  • Date: 2009-08-25 03:55:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090825035555-0m2rh06tcm6pfmzq
Tags: 1:2.2.0-1ubuntu1
* Merge from debian pkg-voip (2.2.0 final)
* Change maintainer and standards version
* Since the init script needs /dev/dahdi, require either dahdi-dkms or
  dahdi-source.

* Debian changes

 [ Tzafrir Cohen ]
 * New upstream release.
 * Patch bashism: fixes bashism in waitfor_xpds (Closes: #535865).
 * Patch hardware_rescan: backport Dahdi::Hardware->rescan()
 * Patch no_extra_at: backport of a per/xpp fix. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Fix bashism in waitfor_xpds
 
2
 
 
3
From upstream r6829. To be included in DAHDI 2.3.0 .
 
4
Fixes #535865
 
5
 
 
6
--- a/xpp/waitfor_xpds
 
7
+++ b/xpp/waitfor_xpds
 
8
@@ -55,7 +55,7 @@ do
 
9
        fi
 
10
        echo -n 1>&2 "."
 
11
        sleep 1
 
12
-       ((tries--))
 
13
+       : $((tries--))
 
14
 done
 
15
 echo ""
 
16