diff options
Diffstat (limited to 'paste.c')
-rw-r--r-- | paste.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: paste.c,v 1.5 2009-01-23 16:19:41 nicm Exp $ */ +/* $Id: paste.c,v 1.6 2009-01-25 18:51:28 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -97,7 +97,7 @@ paste_free_index(struct paste_stack *ps, u_int idx) } void -paste_add(struct paste_stack *ps, const char *data, u_int limit) +paste_add(struct paste_stack *ps, char *data, u_int limit) { struct paste_buffer *pb; @@ -107,13 +107,13 @@ paste_add(struct paste_stack *ps, const char *data, u_int limit) pb = xmalloc(sizeof *pb); ARRAY_INSERT(ps, 0, pb); - pb->data = xstrdup(data); + pb->data = data; if (gettimeofday(&pb->tv, NULL) != 0) fatal("gettimeofday"); } int -paste_replace(struct paste_stack *ps, u_int idx, const char *data) +paste_replace(struct paste_stack *ps, u_int idx, char *data) { struct paste_buffer *pb; @@ -123,7 +123,7 @@ paste_replace(struct paste_stack *ps, u_int idx, const char *data) pb = ARRAY_ITEM(ps, idx); xfree(pb->data); - pb->data = xstrdup(data); + pb->data = data; if (gettimeofday(&pb->tv, NULL) != 0) fatal("gettimeofday"); |