aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/dhcp.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-09-03 08:16:42 -0500
committerRob Landley <rob@landley.net>2013-09-03 08:16:42 -0500
commit79d8bc70539b7a3d459630c97e38d3cdff77e591 (patch)
treeb78b399adae156ccf665dd85593c536d0e2afa9e /toys/pending/dhcp.c
parent01f828d9d80ce2ad80e21638fece083f924318a9 (diff)
downloadtoybox-79d8bc70539b7a3d459630c97e38d3cdff77e591.tar.gz
Convert dhcp/dhcpd from utoa() to sprintf().
Diffstat (limited to 'toys/pending/dhcp.c')
-rw-r--r--toys/pending/dhcp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/toys/pending/dhcp.c b/toys/pending/dhcp.c
index d7a43fad..0bb4ccdd 100644
--- a/toys/pending/dhcp.c
+++ b/toys/pending/dhcp.c
@@ -370,7 +370,9 @@ static void write_pid(char *path)
{
int pidfile = open(path, O_CREAT | O_WRONLY | O_TRUNC, 0666);
if (pidfile > 0) {
- char *pidbuf = utoa(getpid());
+ char pidbuf[12];
+
+ sprintf(pidbuf, "%u", (unsigned)getpid());
write(pidfile, pidbuf, strlen(pidbuf));
close(pidfile);
}