- Use correct filenames for lp ports

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@128 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Diane Bruce 2006-02-20 20:47:12 +00:00
parent 3f811c9bf7
commit f0ac43b43d
1 changed files with 2 additions and 2 deletions

View File

@ -341,9 +341,9 @@ lp_ptt (int fd, int onoff)
* the WSJT.INI instead but for now this should work -- db
*/
#ifdef BSD
#define LPNAME "/dev/lpt%d"
#define LPNAME "lpt%d"
#else
#define LPNAME "/dev/lp%d"
#define LPNAME "lp%d"
#endif
#define LPNAME_SIZE (sizeof(LPNAME))