summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-09-18 18:16:45 +0000
committerJeremy Allison <jra@samba.org>1998-09-18 18:16:45 +0000
commit7be02a20373a72789c5ecb254eeb62abdb9585fe (patch)
treea0296d55a423b73d352ca370c30ac1ddfbda26f1 /source3
parent31ebc956e5f17fef8411b5fef1a6529df072df2a (diff)
downloadsamba-7be02a20373a72789c5ecb254eeb62abdb9585fe.tar.gz
samba-7be02a20373a72789c5ecb254eeb62abdb9585fe.tar.bz2
samba-7be02a20373a72789c5ecb254eeb62abdb9585fe.zip
Changed variable TAB to htab as TAB is defined in a header file on RedHat5.1
Jeremy. (This used to be commit 43ac52ad7a3c1da3c25a63d0458c87f9367453ec)
Diffstat (limited to 'source3')
-rw-r--r--source3/printing/printing.c4
1 files changed, 2 insertions, 2 deletions
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]);