1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

Changed variable TAB to htab as TAB is defined in a header file on RedHat5.1

Jeremy.
This commit is contained in:
Jeremy Allison
-
parent 7c1a5ed1c2
commit 43ac52ad7a

View File

@ -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]);