parent
0ea769c229
commit
eaabfc932c
@ -0,0 +1,29 @@
|
|||||||
|
--- kicker/applets/launcher/easyvector.h
|
||||||
|
+++ kicker/applets/launcher/easyvector.h 2012-04-05 17:33:50.320708865 -0500
|
||||||
|
@@ -87,7 +87,7 @@
|
||||||
|
template < class VALUE, bool CHECKINDEX >
|
||||||
|
void EasyVector< VALUE, CHECKINDEX >::eraseAt(Index index)
|
||||||
|
{ _checkIndex(index);
|
||||||
|
- erase(this->begin()+index);
|
||||||
|
+ this->erase(this->begin()+index);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -108,7 +108,7 @@
|
||||||
|
this->push_back(value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
- insert(this->begin()+index,value);
|
||||||
|
+ this->insert(this->begin()+index,value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -116,7 +116,7 @@
|
||||||
|
void EasyVector< VALUE, CHECKINDEX >::insertAt(EasyVector< VALUE, CHECKINDEX >::Index index,const EasyVector< VALUE, CHECKINDEX > &v)
|
||||||
|
{ index=_convertInsertIndex(index);
|
||||||
|
_checkInsertIndex(index);
|
||||||
|
- insert(this->begin()+index,v.begin(),v.end());
|
||||||
|
+ this->insert(this->begin()+index,v.begin(),v.end());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
auth include system-auth
|
||||||
|
account include system-auth
|
||||||
|
password include system-auth
|
||||||
|
session include system-auth
|
@ -0,0 +1,15 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
auth required pam_env.so
|
||||||
|
auth required pam_permit.so
|
||||||
|
auth include postlogin
|
||||||
|
account required pam_nologin.so
|
||||||
|
account include system-auth
|
||||||
|
password include system-auth
|
||||||
|
session required pam_selinux.so close
|
||||||
|
session required pam_loginuid.so
|
||||||
|
session optional pam_console.so
|
||||||
|
session required pam_selinux.so open
|
||||||
|
session optional pam_keyinit.so force revoke
|
||||||
|
session required pam_namespace.so
|
||||||
|
session include system-auth
|
||||||
|
session include postlogin
|
@ -0,0 +1,18 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
auth [success=done ignore=ignore default=bad] pam_selinux_permit.so
|
||||||
|
auth required pam_env.so
|
||||||
|
auth substack system-auth
|
||||||
|
-auth optional pam_gnome_keyring.so
|
||||||
|
auth include postlogin
|
||||||
|
account required pam_nologin.so
|
||||||
|
account include system-auth
|
||||||
|
password include system-auth
|
||||||
|
session required pam_selinux.so close
|
||||||
|
session required pam_loginuid.so
|
||||||
|
session optional pam_console.so
|
||||||
|
session required pam_selinux.so open
|
||||||
|
session optional pam_keyinit.so force revoke
|
||||||
|
session required pam_namespace.so
|
||||||
|
-session optional pam_gnome_keyring.so auto_start
|
||||||
|
session include system-auth
|
||||||
|
session include postlogin
|
@ -0,0 +1,5 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
auth include system-auth
|
||||||
|
account include system-auth
|
||||||
|
password include system-auth
|
||||||
|
session include system-auth
|
Loading…
Reference in new issue