diff options
author | edwin <edwin@FreeBSD.org> | 2006-01-08 05:14:08 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2006-01-08 05:14:08 +0800 |
commit | c564a45752209e64f36bcf1656e696e0fb38bc13 (patch) | |
tree | b2b4893fd0a8e7ebfc9e792218b91efdab249e52 /irc/xaric/files | |
parent | 28b6691c0492f850236941b301640fb454537fac (diff) | |
download | freebsd-ports-gnome-c564a45752209e64f36bcf1656e696e0fb38bc13.tar.gz freebsd-ports-gnome-c564a45752209e64f36bcf1656e696e0fb38bc13.tar.zst freebsd-ports-gnome-c564a45752209e64f36bcf1656e696e0fb38bc13.zip |
update to 0.13.1
Diffstat (limited to 'irc/xaric/files')
-rw-r--r-- | irc/xaric/files/patch-misc.c | 11 | ||||
-rw-r--r-- | irc/xaric/files/patch-numbers.c | 11 | ||||
-rw-r--r-- | irc/xaric/files/patch-xscandir.c | 11 |
3 files changed, 33 insertions, 0 deletions
diff --git a/irc/xaric/files/patch-misc.c b/irc/xaric/files/patch-misc.c new file mode 100644 index 000000000000..09195173b8ae --- /dev/null +++ b/irc/xaric/files/patch-misc.c @@ -0,0 +1,11 @@ +--- misc.c.orig Sun Jan 8 07:56:40 2006 ++++ misc.c Sun Jan 8 07:57:39 2006 +@@ -114,7 +114,7 @@ + ltime = (ltime - minutes) / 60; + hours = ltime % 24; + days = (ltime - hours) / 24; +- sprintf(buffer, "%2ldd %2ldh %2ldm %2lds", days, hours, minutes, seconds); ++ sprintf(buffer, "%2dd %2dh %2dm %2ds", days, hours, minutes, seconds); + return (*buffer ? buffer : empty_str); + } + diff --git a/irc/xaric/files/patch-numbers.c b/irc/xaric/files/patch-numbers.c new file mode 100644 index 000000000000..f354a3e485e2 --- /dev/null +++ b/irc/xaric/files/patch-numbers.c @@ -0,0 +1,11 @@ +--- numbers.c.orig Sun Jan 8 07:57:54 2006 ++++ numbers.c Sun Jan 8 07:58:02 2006 +@@ -986,7 +986,7 @@ + + if (!ArgList[1] || !*ArgList[1]) + break; +- sscanf(ArgList[1], "%lu", &tme); ++ sscanf(ArgList[1], "%u", &tme); + this_sucks = ctime(&tme); + this_sucks[strlen(this_sucks) - 1] = '\0'; + diff --git a/irc/xaric/files/patch-xscandir.c b/irc/xaric/files/patch-xscandir.c new file mode 100644 index 000000000000..39fa6ecbac75 --- /dev/null +++ b/irc/xaric/files/patch-xscandir.c @@ -0,0 +1,11 @@ +--- xscandir.c.orig Sun Jan 8 07:58:21 2006 ++++ xscandir.c Sun Jan 8 08:00:46 2006 +@@ -84,7 +84,7 @@ + static int the_longest; + + /* used by scandir to select entries */ +-static int dselect(const struct dirent *d) ++static int dselect(struct dirent *d) + { + int t; + |