~zulcss/ubuntu/lucid/likewise-open/likewise-open-sru

« back to all changes in this revision

Viewing changes to samba/source/winbindd/likewise/idmap_lwidentity.c

  • Committer: Bazaar Package Importer
  • Author(s): Rick Clark
  • Date: 2008-08-27 08:56:20 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080827085620-5q0f58b9qtog9myq
Tags: 4.1.0.2956-0ubuntu1
* missing-likewise-logo.diff: removed
* fixed copyright notice
* updated Standards-Version to 3.8.0
* removed path from command in prerm
* removed stop in S runlevel

Show diffs side-by-side

added added

removed removed

Lines of Context:
352
352
        nt_status = cell->provider->map_to_alias(mem_ctx, domain,
353
353
                                                 name, alias);
354
354
 
 
355
        /* go ahead and allow the cache mgr to mark this in 
 
356
           negative cache */
 
357
 
 
358
        if (!NT_STATUS_IS_OK(nt_status))
 
359
                nt_status = NT_STATUS_NONE_MAPPED;
 
360
 
355
361
done:
356
362
        return nt_status;
357
363
}
377
383
 
378
384
        nt_status = cell->provider->map_from_alias(mem_ctx, domain,
379
385
                                                   alias, name);
 
386
 
 
387
        /* go ahead and allow the cache mgr to mark this in 
 
388
           negative cache */
 
389
 
 
390
        if (!NT_STATUS_IS_OK(nt_status))
 
391
                nt_status = NT_STATUS_NONE_MAPPED;
 
392
 
380
393
done:
381
394
        return nt_status;
382
395
}