search for: has_punctuation

Displaying 1 result from an estimated 1 matches for "has_punctuation".

1997 Aug 01
0
printcap entries over 8 chars long
...r less) character Jim> alias as the *first* alias of the printcap entry. Well, I found a quick hack that'll work. I don't have any problems with it so far.. In pcap.c near the very end, change line 359 from this: if (strlen(p) <= 8 && strlen(p)>strlen(name) && !has_punctuation) to this: if (strlen(p) <= 16 && strlen(p)>strlen(name) && !has_punctuation) and at line 377 from this: name[8] = 0; to this: name[16] = 0; It will now have a limit of 16 chars for queue names. Hope this helps. -- Rob Naccarato "I know I'm a lot...