diff options
author | Herb Lewis <herb@samba.org> | 1998-01-21 09:17:51 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 1998-01-21 09:17:51 +0000 |
commit | 4e258eecf7088d78b285440ca87386987196eaec (patch) | |
tree | aef19ba63e836a9f48ab293cb85853fd1de469f1 /source | |
parent | 6b3d4620c128fe1f77f579a451eac7f41a83064f (diff) | |
download | samba-4e258eecf7088d78b285440ca87386987196eaec.tar.gz |
fix problems with using inf files from HP for DesignJet 750C (C3195A)
Diffstat (limited to 'source')
-rw-r--r-- | source/utils/make_printerdef.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source/utils/make_printerdef.c b/source/utils/make_printerdef.c index ef890163f04..ce61f460ff3 100644 --- a/source/utils/make_printerdef.c +++ b/source/utils/make_printerdef.c @@ -157,7 +157,7 @@ char *find_desc(FILE *fichier,char *text) fgets(chaine,255,fichier); long_desc=strtok(chaine,"="); - crap=strtok(NULL,","); + crap=strtok(NULL,",\r"); p=long_desc; while(*p!='"' && *p!='\0') @@ -217,6 +217,9 @@ void scan_copyfiles(FILE *fichier, char *chaine) } i=0; while (*buffer[i]!='\0') { + part = &buffer[i][strlen(buffer[i])-1]; + if (*part == '=') + *part = '\0'; if (strlen(files_to_copy) != 0) strcat(files_to_copy,","); strcat(files_to_copy,direc); |