Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff

/*  Code intended to run with elevated privileges  */

if (setuid(getuid()) == -1) {
  /* Handle Error */
}

if  (setuid(0) != -1) {
   /* Privileges notcan be droppedrestored, handle error */
}

/*  Code intended to run with lower privileges  */ 

...