* mkvers.sh: Prefix day with 0 in date only when day < 10.
This commit is contained in:
parent
01620aa250
commit
b3acb772c0
@ -1,3 +1,7 @@
|
|||||||
|
2003-04-13 Pierre Humblet <pierre.humblet@ieee.org>
|
||||||
|
|
||||||
|
* mkvers.sh: Prefix day with 0 in date only when day < 10.
|
||||||
|
|
||||||
2003-04-11 Pierre Humblet <pierre.humblet@ieee.org>
|
2003-04-11 Pierre Humblet <pierre.humblet@ieee.org>
|
||||||
|
|
||||||
* security.cc (get_info_from_sd): New function.
|
* security.cc (get_info_from_sd): New function.
|
||||||
|
@ -45,7 +45,7 @@ case "$2" in
|
|||||||
Dec) m=12 ;;
|
Dec) m=12 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
if [ "$3" -le 10 ]; then
|
if [ "$3" -lt 10 ]; then
|
||||||
d=0$3
|
d=0$3
|
||||||
else
|
else
|
||||||
d=$3
|
d=$3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user