Mon Apr 5 17:12:06 2004 Michael Jennings (mej)

Fixed bug in loading print_pipe attribute pointed out by Tom A. Cox
<tomc@hot.rr.com>.


SVN revision: 9612
This commit is contained in:
Michael Jennings 2004-04-05 21:00:36 +00:00
parent 1d9af6967b
commit 706773584e
2 changed files with 6 additions and 2 deletions

View File

@ -5198,3 +5198,8 @@ Thu Mar 11 11:55:45 2004 Michael Jennings (mej)
Fix "make distcheck"
----------------------------------------------------------------------
Mon Apr 5 17:12:06 2004 Michael Jennings (mej)
Fixed bug in loading print_pipe attribute pointed out by Tom A. Cox
<tomc@hot.rr.com>.
----------------------------------------------------------------------

View File

@ -1441,8 +1441,7 @@ parse_misc(char *buff, void *state)
}
if (!BEG_STRCASECMP(buff, "print_pipe ")) {
#ifdef PRINTPIPE
RESET_AND_ASSIGN(rs_print_pipe, STRDUP(get_pword(2, buff)));
chomp(rs_print_pipe);
RESET_AND_ASSIGN(rs_print_pipe, get_word(2, buff));
#else
print_warning("Support for the print_pipe attribute was not compiled in, ignoring\n");
#endif