-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More robust ausearch time input #135
base: master
Are you sure you want to change the base?
Conversation
Depending on what locale you were using, you may have time that would show AM or PM. This would cause the time to be incorrect on noon and midnight rollovers. This change allows all the output of strptime's %x and %X to be captured and provided to ausearch.
I don't know why my email response to the thread isn't showing. Did you post this to the selinux list, i didn't see it? If you didn't please send it to the list as well. |
Did you post this to the mailing list, I am not seeing it. I have no objections,
But we require the patch on the mailing list. However, issuing a PR makes
My life easier, thanks.
… -----Original Message-----
From: Kenny Root ***@***.***
Sent: Tuesday, March 12, 2019 7:35 PM
To: SELinuxProject/selinux ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [SELinuxProject/selinux] More robust ausearch time input (#135)
Depending on what locale you were using, you may have time that would show
AM or PM.
This would cause the time to be incorrect on noon and midnight rollovers. This
change allows all the output of strptime's %x and %X to be captured and provided
to ausearch.
________________________________
You can view, comment on, or merge this pull request online at:
#135
Commit Summary
* More robust ausearch time input
File Changes
* M python/sepolicy/sepolicy/templates/script.py
<https://github.com/SELinuxProject/selinux/pull/135/files#diff-0> (5)
Patch Links:
* https://github.com/SELinuxProject/selinux/pull/135.patch
* https://github.com/SELinuxProject/selinux/pull/135.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#135> , or mute the thread
<https://github.com/notifications/unsubscribe-
auth/AQ7bB24OkQ8Hsoz5bHQK3BrqJpP3_dDzks5vWGO7gaJpZM4bsRGJ> .
<https://github.com/notifications/beacon/AQ7bB8yuhNcg0XDX77wT-
f6Wn5IZAfYlks5vWGO7gaJpZM4bsRGJ.gif>
|
No, I was just annoyed when the time flipped from AM to PM. |
Can you send this patch out to the list? |
@kruton The patch needs to be sent to selinux@vger.kernel.org for review. I can do it for you. But I'd like to ask you to add Signed-off-by: line (git commit -s ...) to the description, see |
Depending on what locale you were using, you may have time that would show AM or PM.
This would cause the time to be incorrect on noon and midnight rollovers. This change allows
all the output of strptime's %x and %X to be captured and provided to ausearch.