diff options
| author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2015-10-03 23:29:57 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-04 00:56:41 +0200 |
| commit | 0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c (patch) | |
| tree | 03d45236e3fe56c314f47aeb91c4b7f86d176079 /package/tftpd | |
| parent | 60be80914fa263ecc06e907bc6d1249dbc80018a (diff) | |
| download | buildroot-0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c.tar.gz buildroot-0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c.zip | |
package: Replace 'echo -n' by 'printf'
'echo -n' is not a POSIX construct (no flag support), we shoud use
'printf', especially in init script.
This patch was generated by the following command line:
git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/'
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/tftpd')
| -rwxr-xr-x | package/tftpd/S80tftpd-hpa | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/tftpd/S80tftpd-hpa b/package/tftpd/S80tftpd-hpa index 08443a4c5f..4e8361faa7 100755 --- a/package/tftpd/S80tftpd-hpa +++ b/package/tftpd/S80tftpd-hpa @@ -37,12 +37,12 @@ d_reload() { case "$1" in start) - echo -n "Starting $DESC: " + printf "Starting $DESC: " d_start echo "done" ;; stop) - echo -n "Stopping $DESC: " + printf "Stopping $DESC: " d_stop echo "done" ;; @@ -55,7 +55,7 @@ case "$1" in # If the daemon responds to changes in its config file # directly anyway, make this an "exit 0". # - # echo -n "Reloading $DESC configuration..." + # printf "Reloading $DESC configuration..." # d_reload # echo "done." #;; @@ -65,7 +65,7 @@ case "$1" in # option to the "reload" entry above. If not, "force-reload" is # just the same as "restart". # - echo -n "Restarting $DESC: " + printf "Restarting $DESC: " d_stop sleep 1 d_start |

