diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-05-15 08:42:36 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-05-15 08:42:36 +0000 |
commit | 23bf62f3a1f1d50668d7decb937b4c0a5a9b0fa5 (patch) | |
tree | f55a1af201670364099fb6ae230834bf742a73f8 /app-mobilephone/x70talk/files | |
parent | moved from app-pda/bitpim; version bumped (diff) | |
download | gentoo-2-23bf62f3a1f1d50668d7decb937b4c0a5a9b0fa5.tar.gz gentoo-2-23bf62f3a1f1d50668d7decb937b4c0a5a9b0fa5.tar.bz2 gentoo-2-23bf62f3a1f1d50668d7decb937b4c0a5a9b0fa5.zip |
moved from app-pda/x70talk; removed old test version
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-mobilephone/x70talk/files')
-rw-r--r-- | app-mobilephone/x70talk/files/digest-x70talk-0.1.4-r1 | 1 | ||||
-rw-r--r-- | app-mobilephone/x70talk/files/x70talk-correct-month.diff | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/app-mobilephone/x70talk/files/digest-x70talk-0.1.4-r1 b/app-mobilephone/x70talk/files/digest-x70talk-0.1.4-r1 new file mode 100644 index 000000000000..15ee8b25aeb8 --- /dev/null +++ b/app-mobilephone/x70talk/files/digest-x70talk-0.1.4-r1 @@ -0,0 +1 @@ +MD5 c85eb4766724b5a3047ecd5b461fc3f1 x70talk-0.1.4.tar.gz 56293 diff --git a/app-mobilephone/x70talk/files/x70talk-correct-month.diff b/app-mobilephone/x70talk/files/x70talk-correct-month.diff new file mode 100644 index 000000000000..1bc0fc55dc69 --- /dev/null +++ b/app-mobilephone/x70talk/files/x70talk-correct-month.diff @@ -0,0 +1,13 @@ +diff -up x70talk/x70.c x70talk.correct-month/x70.c +--- x70talk/x70.c 2004-05-08 08:49:00.000000000 +0100 ++++ x70talk.correct-month/x70.c 2004-12-10 20:16:42.686644088 +0100 +@@ -492,7 +492,7 @@ int x70_set_time(int fd, char *errbuf) + time(&now); + tm = localtime(&now); + sprintf(cmdbuf, "AT+CCLK=%02d/%02d/%02d,%02d:%02d:%02d", +- tm->tm_year-100, tm->tm_mon, tm->tm_mday, ++ tm->tm_year-100, tm->tm_mon+1, tm->tm_mday, + tm->tm_hour, tm->tm_min, tm->tm_sec); + + i = at_run(fd, cmdbuf, 0, &resp); + |