diff options
author | Jeremy Allison <jra@samba.org> | 1998-09-18 18:16:45 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-09-18 18:16:45 +0000 |
commit | 43ac52ad7a3c1da3c25a63d0458c87f9367453ec (patch) | |
tree | 4c511579fe5436dc4fd5bd4c11d8b04fc221070d | |
parent | 7c1a5ed1c2a55543d3f3c8bbd38e6c9c35b80390 (diff) | |
download | samba-43ac52ad7a3c1da3c25a63d0458c87f9367453ec.tar.gz samba-43ac52ad7a3c1da3c25a63d0458c87f9367453ec.tar.xz samba-43ac52ad7a3c1da3c25a63d0458c87f9367453ec.zip |
Changed variable TAB to htab as TAB is defined in a header file on RedHat5.1
Jeremy.
-rw-r--r-- | source/printing/printing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/printing/printing.c b/source/printing/printing.c index a7f832b5934..4df965204a0 100644 --- a/source/printing/printing.c +++ b/source/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]); |