Changeset 61


Ignore:
Timestamp:
01/09/12 17:18:05 (12 years ago)
Author:
mmamonski
Message:

Use ; instead of , to separate custom resources

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r45 r61  
    1 AC_INIT([DRMAA for PBS Pro], [1.0.11], [mamonski@man.poznan.pl], [pbs-drmaa]) 
     1AC_INIT([DRMAA for PBS Pro], [1.0.12], [mamonski@man.poznan.pl], [pbs-drmaa]) 
    22AC_PREREQ(2.59) 
    33AC_REVISION([$Id$]) 
     
    2323PBS_DRMAA_MAJOR=1 
    2424PBS_DRMAA_MINOR=0 
    25 PBS_DRMAA_MICRO=11 
    26 PBS_DRMAA_VERSION_INFO=1:11:0 
     25PBS_DRMAA_MICRO=12 
     26PBS_DRMAA_VERSION_INFO=1:12:0 
    2727AC_SUBST([PBS_DRMAA_MAJOR]) 
    2828AC_SUBST([PBS_DRMAA_MINOR]) 
  • trunk/pbs_drmaa/submit.c

    r57 r61  
    156156                                /* matlab:2,simulink:1 */ 
    157157 
    158                                 for (res_token = strtok_r(value_copy, ",", &tok_comma_ctx); res_token; res_token = strtok_r(NULL, ",", &tok_comma_ctx)) 
     158                                for (res_token = strtok_r(value_copy, ";", &tok_comma_ctx); res_token; res_token = strtok_r(NULL, ";", &tok_comma_ctx)) 
    159159                                 { 
    160160                                        char *value_p = strstr(res_token, ":"); 
Note: See TracChangeset for help on using the changeset viewer.