- Timestamp:
- 2008-02-12T00:01:35Z (15 years ago)
- Branches:
- master
- Children:
- 0529a7f
- Parents:
- 5f4eede
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
set.c
r5f4eede re2b15bb 369 369 return value; 370 370 } 371 372 /* possible values: never, opportunistic, manual, always */ 373 char *set_eval_otr_policy( set_t *set, char *value ) 374 { 375 if ( !strcmp(value, "never") ) 376 return value; 377 if ( !strcmp(value, "opportunistic") ) 378 return value; 379 if ( !strcmp(value, "manual") ) 380 return value; 381 if ( !strcmp(value, "always") ) 382 return value; 383 return NULL; 384 }
Note: See TracChangeset
for help on using the changeset viewer.