diff options
author | joerg <joerg@pkgsrc.org> | 2008-02-07 17:23:37 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-02-07 17:23:37 +0000 |
commit | 3e2c8c39a9ad37275a5a37195d3af279a9ea798d (patch) | |
tree | 24410c61d3d73ec7ba92abfe76b04a072d6d0e21 /net/libfetch | |
parent | 48690f3324ff6cf55a656e52847005c478218f59 (diff) | |
download | pkgsrc-3e2c8c39a9ad37275a5a37195d3af279a9ea798d.tar.gz |
Expand __func__.
Diffstat (limited to 'net/libfetch')
-rw-r--r-- | net/libfetch/files/http.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/libfetch/files/http.c b/net/libfetch/files/http.c index cfe5ae924e6..5c77e797bc1 100644 --- a/net/libfetch/files/http.c +++ b/net/libfetch/files/http.c @@ -1,4 +1,4 @@ -/* $NetBSD: http.c,v 1.4 2008/02/07 17:12:12 joerg Exp $ */ +/* $NetBSD: http.c,v 1.5 2008/02/07 17:23:37 joerg Exp $ */ /*- * Copyright (c) 2000-2004 Dag-Erling Coïdan Smørgrav * All rights reserved. @@ -158,10 +158,10 @@ http_new_chunk(struct httpio *io) if (fetchDebug) { io->total += io->chunksize; if (io->chunksize == 0) - fprintf(stderr, "%s(): end of last chunk\n", __func__); + fprintf(stderr, "http_new_chunk(): end of last chunk\n"); else - fprintf(stderr, "%s(): new chunk: %lu (%lu)\n", - __func__, (unsigned long)io->chunksize, + fprintf(stderr, "http_new_chunk(): new chunk: %lu (%lu)\n", + (unsigned long)io->chunksize, (unsigned long)io->total); } #endif |