summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/strfd.c
diff options
context:
space:
mode:
Diffstat (limited to 'libglusterfs/src/strfd.c')
-rw-r--r--libglusterfs/src/strfd.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/libglusterfs/src/strfd.c b/libglusterfs/src/strfd.c
index 8c97670d4dd..f5b7b94bfa1 100644
--- a/libglusterfs/src/strfd.c
+++ b/libglusterfs/src/strfd.c
@@ -33,14 +33,11 @@ strfd_open ()
int
-strprintf (strfd_t *strfd, const char *fmt, ...)
+strvprintf (strfd_t *strfd, const char *fmt, va_list ap)
{
- va_list ap;
char *str = NULL;
int size = 0;
- va_start (ap, fmt);
-
size = vasprintf (&str, fmt, ap);
if (size < 0)
@@ -81,6 +78,20 @@ strprintf (strfd_t *strfd, const char *fmt, ...)
int
+strprintf (strfd_t *strfd, const char *fmt, ...)
+{
+ int ret = 0;
+ va_list ap;
+
+ va_start (ap, fmt);
+ ret = strvprintf (strfd, fmt, ap);
+ va_end (ap);
+
+ return ret;
+}
+
+
+int
strfd_close (strfd_t *strfd)
{
GF_FREE (strfd->data);