diff options
author | Antti-Juhani Kaijanaho <ajk@debian.org> | 2011-07-28 12:55:35 +0300 |
---|---|---|
committer | Antti-Juhani Kaijanaho <ajk@debian.org> | 2011-07-28 12:59:37 +0300 |
commit | 9f8d56c2adff6e88ad4b4806ccae0b5d565e9f9e (patch) | |
tree | bafaf4491cc9b78ff51e73849b9043cd9a179925 /grep-dctrl | |
parent | 0be18026cd200757be589fd7a02c29f5cf3f5731 (diff) | |
download | dctrl-tools-9f8d56c2adff6e88ad4b4806ccae0b5d565e9f9e.tar.gz |
#525525: grep-dctrl/grep-dctrl.c: Output a stanza separator unconditionally
Signed-off-by: Antti-Juhani Kaijanaho <ajk@debian.org>
Diffstat (limited to 'grep-dctrl')
-rw-r--r-- | grep-dctrl/grep-dctrl.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/grep-dctrl/grep-dctrl.c b/grep-dctrl/grep-dctrl.c index 4f26168..115b278 100644 --- a/grep-dctrl/grep-dctrl.c +++ b/grep-dctrl/grep-dctrl.c @@ -1,5 +1,6 @@ /* dctrl-tools - Debian control file inspection tools - Copyright © 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 + Copyright © 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, + 2010, 2011 Antti-Juhani Kaijanaho This program is free software; you can redistribute it and/or modify @@ -936,7 +937,10 @@ int main (int argc, char * argv[]) show_field(&args, ¶, fa); } } - if (args.num_show_fields > 1) puts(""); + /* let's see how many users howl in pain after + deactivating this conditional (see BTS #525525) + + if (args.num_show_fields > 1)*/ puts(""); } fsaf_close(fp); |