diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-08-24 14:46:42 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2006-08-24 14:46:42 -0700 |
commit | 02ffb657b023d9b2a2c6c1d2417da8dcb96aa4b2 (patch) | |
tree | 78591680fd913c8822d9fc34286d7312f2ad09b5 /Xtransutil.c | |
parent | 3d5e7dd18c8836065c4835740211c10747b18abd (diff) |
More sprintf -> snprintf conversions
Diffstat (limited to 'Xtransutil.c')
-rw-r--r-- | Xtransutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xtransutil.c b/Xtransutil.c index 253e8b0..cc57193 100644 --- a/Xtransutil.c +++ b/Xtransutil.c @@ -300,7 +300,7 @@ TRANS(GetMyNetworkId) (XtransConnInfo ciptr) #endif portnum = ntohs (saddr->sin_port); - sprintf (portnumbuf, "%d", portnum); + snprintf (portnumbuf, sizeof(portnumbuf), "%d", portnum); networkId = (char *) xalloc (3 + strlen (transName) + strlen (hostnamebuf) + strlen (portnumbuf)); sprintf (networkId, "%s/%s:%s", transName, hostnamebuf, portnumbuf); |