Package: lsb-base Version: 3.2-23.1 Severity: wishlist
Prefer lines that contain "one action per line" for readability. -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores) Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages lsb-base depends on: ii ncurses-bin 5.7+20100313-4 terminal-related programs and man ii sed 4.2.1-7 The GNU sed stream editor lsb-base recommends no packages. lsb-base suggests no packages. -- no debconf information
>From e052fe34caf1daea86beb36c0b8ec522345a9fdf Mon Sep 17 00:00:00 2001 From: Jari Aalto <jari.aa...@cante.net> Date: Sun, 31 Oct 2010 23:39:10 +0200 Subject: [PATCH] init-functions: prefer single line statements Organization: Private Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Signed-off-by: Jari Aalto <jari.aa...@cante.net> --- init-functions | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/init-functions b/init-functions index 57444b8..dfb49e9 100644 --- a/init-functions +++ b/init-functions @@ -67,7 +67,9 @@ pidofproc () { OPTIND=1 while getopts p: opt ; do case "$opt" in - p) pidfile="$OPTARG"; specified=1;; + p) pidfile="$OPTARG" + specified=1 + ;; esac done shift $(($OPTIND - 1)) -- 1.7.2.3