Commit 0f607413 authored by neilpang's avatar neilpang
Browse files

fix for solaris time format

parent 92255303
...@@ -1615,9 +1615,8 @@ _time2str() { ...@@ -1615,9 +1615,8 @@ _time2str() {
fi fi
#Solaris #Solaris
if _exists adb; then if printf "%(%Y-%m-%dT%H:%M:%SZ)T\n" $1 2>/dev/null; then
_t_s_a=$(echo "0t${1}=Y" | adb) return
echo "$_t_s_a"
fi fi
#Busybox #Busybox
...@@ -1788,6 +1787,11 @@ _date2time() { ...@@ -1788,6 +1787,11 @@ _date2time() {
if date -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then if date -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then
return return
fi fi
#Solaris
if gdate -u -d "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then
return
fi
#Mac/BSD #Mac/BSD
if date -u -j -f "%Y-%m-%d %H:%M:%S" "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then if date -u -j -f "%Y-%m-%d %H:%M:%S" "$(echo "$1" | tr -d "Z" | tr "T" ' ')" +"%s" 2>/dev/null; then
return return
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment