while (0 < (c = getopt(argc,argv,options))) in plmcat.c, plmsend.c and plmtty.c loops forever in my Linux installation, where 'c' ended up with the value 255. Fixed with: int rc; while (0 < (rc = getopt(argc,argv,options))) { c = (char) rc;
Log in to post a comment.