aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2008-12-14 19:57:20 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2008-12-14 19:57:20 +0200
commit2099cf51128f3851fd230f0e5948ef514bb3141c (patch)
tree8c038fcf31315d3d549502d8bde5dcd30a5a5b5c
parent98759b2d7c6c825eff012cc832e5d6ef8104ba62 (diff)
downloadradius-2099cf51128f3851fd230f0e5948ef514bb3141c.tar.gz
radius-2099cf51128f3851fd230f0e5948ef514bb3141c.tar.bz2
Bugfixes.
* lib/numtostr.c: Bugfix. * README-hacking: Fix typo.
-rw-r--r--README-hacking2
-rw-r--r--lib/numtostr.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/README-hacking b/README-hacking
index 7e3d6de2..25294788 100644
--- a/README-hacking
+++ b/README-hacking
@@ -33,7 +33,7 @@ about recent changes is the git log. Run `git log' to view it.
Run `make ChangeLog' to convert it to ChangeLog format.
For more information, including a description of some debugging
-techniques, see the file RADIUS-alpha.
+techniques, see the file README-alpha.
* Bootstrapping
diff --git a/lib/numtostr.c b/lib/numtostr.c
index 97ce981e..a319c789 100644
--- a/lib/numtostr.c
+++ b/lib/numtostr.c
@@ -32,8 +32,6 @@ numtostr (inttype i, char *buf, size_t size)
char *p = ibuf + sizeof ibuf;
size_t s;
- *p = 0;
-
if (i < 0) {
do
*--p = '0' - i % 10;

Return to:

Send suggestions and report system problems to the System administrator.