From 7be02a20373a72789c5ecb254eeb62abdb9585fe Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 18 Sep 1998 18:16:45 +0000 Subject: Changed variable TAB to htab as TAB is defined in a header file on RedHat5.1 Jeremy. (This used to be commit 43ac52ad7a3c1da3c25a63d0458c87f9367453ec) --- source3/printing/printing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/printing/printing.c b/source3/printing/printing.c index a7f832b593..4df965204a 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -577,12 +577,12 @@ static BOOL parse_lpq_hpux(char * line, print_queue_struct *buf, BOOL first) static int base_prio; int count; - char TAB = '\011'; + char htab = '\011'; fstring tok[12]; /* If a line begins with a horizontal TAB, it is a subline type */ - if (line[0] == TAB) { /* subline */ + if (line[0] == htab) { /* subline */ /* check if it contains the base priority */ if (!strncmp(line,"\tfence priority : ",18)) { base_prio=atoi(&line[18]); -- cgit