- Add new function getseuser which will take username and service and

return
- seuser and level. ipa will populate file in future.
- Change selinuxdefcon to return just the context by default
This commit is contained in:
Daniel J Walsh 2008-12-12 16:15:27 +00:00
parent cd000f17c0
commit d9847be233
2 changed files with 6 additions and 5 deletions

View File

@ -2961,8 +2961,8 @@ diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinuxswig_wrap.c libsel
printf("SWIG_InitializeModule: size %d\n", swig_module.size);
diff --exclude-from=exclude -N -u -r nsalibselinux/src/seusers.c libselinux-2.0.76/src/seusers.c
--- nsalibselinux/src/seusers.c 2008-08-28 09:34:24.000000000 -0400
+++ libselinux-2.0.76/src/seusers.c 2008-12-12 10:06:56.000000000 -0500
@@ -243,3 +243,66 @@
+++ libselinux-2.0.76/src/seusers.c 2008-12-12 11:06:18.000000000 -0500
@@ -243,3 +243,67 @@
*r_level = NULL;
return 0;
}
@ -3027,7 +3027,8 @@ diff --exclude-from=exclude -N -u -r nsalibselinux/src/seusers.c libselinux-2.0.
+ free(buffer);
+ fclose(fp);
+ free(rec);
+ return getseuserbyname(username, r_seuser, r_level);
+
+ return (ret ? getseuserbyname(username, r_seuser, r_level) : ret);
+}
diff --exclude-from=exclude -N -u -r nsalibselinux/utils/getdefaultcon.c libselinux-2.0.76/utils/getdefaultcon.c
--- nsalibselinux/utils/getdefaultcon.c 2008-08-28 09:34:24.000000000 -0400

View File

@ -5,7 +5,7 @@
Summary: SELinux library and simple utilities
Name: libselinux
Version: 2.0.76
Release: 3%{?dist}
Release: 4%{?dist}
License: Public Domain
Group: System Environment/Libraries
Source: http://www.nsa.gov/selinux/archives/%{name}-%{version}.tgz
@ -163,7 +163,7 @@ exit 0
%{ruby_sitearch}/selinux.so
%changelog
* Fri Dec 12 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.76-3
* Fri Dec 12 2008 Dan Walsh <dwalsh@redhat.com> - 2.0.76-4
- Add new function getseuser which will take username and service and return
- seuser and level. ipa will populate file in future.
- Change selinuxdefcon to return just the context by default