Code

Skip nobody id
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 12 Dec 2006 08:59:28 +0000 (08:59 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 12 Dec 2006 08:59:28 +0000 (08:59 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5361 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/posix/class_posixAccount.inc

index 8f44a6257d7aac9228cd41d51006d80549dd2a33..901caa244e5d18596c7d8e0372d679611bd349f6 100644 (file)
@@ -1083,6 +1083,9 @@ class posixAccount extends plugin
       $ids[]= (int)$attrs["$attrib"][0];
     }
 
+    /* Add the nobody id */
+    $ids[]=  65534;
+
     /* Find out next free id near to UID_BASE */
     for ($id= $this->config->current['UIDBASE']; $id++; $id < pow(2,32)){
       if (!in_array($id, $ids)){