aboutsummaryrefslogtreecommitdiffstats
path: root/unmime.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-11-12 21:13:59 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-11-12 21:13:59 +0000
commit85026c42ec8ff853e10f03d28c95c12433fa776e (patch)
tree11037211b02a44c6df3ecd8b25bca6f53603efe2 /unmime.c
parentb4e7d65a954680b3092db0880bcf90aa4a93dec6 (diff)
downloadfetchmail-85026c42ec8ff853e10f03d28c95c12433fa776e.tar.gz
fetchmail-85026c42ec8ff853e10f03d28c95c12433fa776e.tar.bz2
fetchmail-85026c42ec8ff853e10f03d28c95c12433fa776e.zip
sprintf -> snprintf
svn path=/trunk/; revision=4003
Diffstat (limited to 'unmime.c')
-rw-r--r--unmime.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/unmime.c b/unmime.c
index 5bc8f2b0..5a442cb5 100644
--- a/unmime.c
+++ b/unmime.c
@@ -668,10 +668,11 @@ int main(int argc, char *argv[])
FILE *fd_orig, *fd_conv;
char fnam[100];
+ /* we don't need snprintf here, but for consistency, we'll use it */
pid = getpid();
- sprintf(fnam, "/tmp/i_unmime.%lx", (long)pid);
+ snprintf(fnam, sizeof(fnam), "/tmp/i_unmime.%lx", (long)pid);
fd_orig = fopen(fnam, "w");
- sprintf(fnam, "/tmp/o_unmime.%lx", (long)pid);
+ snprintf(fnam, sizeof(fnam), "/tmp/o_unmime.%lx", (long)pid);
fd_conv = fopen(fnam, "w");
#endif