summaryrefslogtreecommitdiff
path: root/apps/nshlib/nsh_timcmds.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-01 17:56:03 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-01 17:56:03 +0000
commit12ede7f8e242f87c62ad3e7739d6a6452be813a1 (patch)
treea09a716fb96e2a520a6d35bb9603b4eb14bd208c /apps/nshlib/nsh_timcmds.c
parent0c65db21d1bdc2ca3419f947288e08033f890662 (diff)
downloadnuttx-12ede7f8e242f87c62ad3e7739d6a6452be813a1.tar.gz
nuttx-12ede7f8e242f87c62ad3e7739d6a6452be813a1.tar.bz2
nuttx-12ede7f8e242f87c62ad3e7739d6a6452be813a1.zip
Fix errors in gmtime and gmtime_r
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3933 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/nshlib/nsh_timcmds.c')
-rw-r--r--apps/nshlib/nsh_timcmds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/nshlib/nsh_timcmds.c b/apps/nshlib/nsh_timcmds.c
index bf5e6cd5d..04a79e77d 100644
--- a/apps/nshlib/nsh_timcmds.c
+++ b/apps/nshlib/nsh_timcmds.c
@@ -124,7 +124,7 @@ static inline int date_showtime(FAR struct nsh_vtbl_s *vtbl, FAR const char *nam
/* Break the current time up into the format needed by strftime */
- (void)gmtime_r((FAR const time_t*)ts.tv_sec, &tm);
+ (void)gmtime_r((FAR const time_t*)&ts.tv_sec, &tm);
/* Show the current time in the requested format */
@@ -166,7 +166,7 @@ static inline int date_settime(FAR struct nsh_vtbl_s *vtbl, FAR const char *name
/* Get the day of the month. NOTE: Accepts day-of-month up to 31 for all months */
- token = strtok_r(newtime, " \t",&saveptr);
+ token = strtok_r(NULL, " \t",&saveptr);
if (token == NULL)
{
goto errout_bad_parm;
@@ -237,7 +237,7 @@ static inline int date_settime(FAR struct nsh_vtbl_s *vtbl, FAR const char *name
{
goto errout_bad_parm;
}
- tm.tm_year = (int)result;
+ tm.tm_year = (int)result - 1900;
/* Convert this to the right form, then set the timer */