~ubuntu-branches/ubuntu/precise/torque/precise-updates

« back to all changes in this revision

Viewing changes to src/server/attr_recov.c

  • Committer: Bazaar Package Importer
  • Author(s): Dominique Belhachemi
  • Date: 2010-05-17 20:56:46 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100517205646-yjsoqs5r1s9xpnu9
Tags: upstream-2.4.8+dfsg
ImportĀ upstreamĀ versionĀ 2.4.8+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
  struct attribute_def *padef,
393
393
  struct attribute     *pattr,
394
394
  int                   limit,
395
 
  int                   unknown)
 
395
  int                   unknown,
 
396
  int                   do_actions)
396
397
 
397
398
  {
398
399
  static char  id[] = "recov_attr";
514
515
      pal->al_resc,
515
516
      pal->al_value);
516
517
 
517
 
    if ((padef + index)->at_action != (int (*)())0)
 
518
    if ((do_actions) && (padef + index)->at_action != (int (*)())0)
518
519
      (padef + index)->at_action(pattr + index, parent, ATR_ACTION_RECOV);
519
520
 
520
521
    (pattr + index)->at_flags = pal->al_flags & ~ATR_VFLAG_MODIFY;