Remove arbitrary limit of 15 characters in the job name field. The claim is that this is required by a specification somewhere, but our users get annoyed at the short names it enforces. --- pbs-2.3.12-pw/src/lib/Libcmds/ck_job_name.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN src/lib/Libcmds/ck_job_name.c~job-name-no-limit src/lib/Libcmds/ck_job_name.c --- pbs-2.3.12/src/lib/Libcmds/ck_job_name.c~job-name-no-limit 2004-04-17 11:09:57.000000000 -0400 +++ pbs-2.3.12-pw/src/lib/Libcmds/ck_job_name.c 2004-04-17 11:09:57.000000000 -0400 @@ -99,7 +99,8 @@ int check_job_name(name, chk_alpha) int chk_alpha; { - if ( (strlen(name) > (size_t)15) || + /* This 15-character limit is not helpful to our users. --pw */ + if ( /* (strlen(name) > (size_t)15) || */ ((chk_alpha == 1) && (isalpha((int)*name) == 0)) ) return (-1); _