View Issue Details

IDProjectCategoryView StatusLast Update
0002977unrealinstallingpublic2007-06-11 15:58
Reporterbuildsmart Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status closedResolutionwont fix 
Product Version3.2.4 
Summary0002977: Clean up output of libcurl version information
Descriptioncurrent implementation:

#ifdef USE_LIBCURL
    fprintf(stderr, " using %s\n", curl_version);
#endif
Additional Informationproposed implementation:

#ifdef USE_LIBCURL
    char buf[64], *stop;
    strlcpy(buf, curl_version()+8, sizeof(buf));
    stop = strchr(buf, ' ');
    if (stop)
        *stop = '\0';
    fprintf(stderr, " using libcurl %s\n", buf);
#endif
3rd party modules

Activities

buildsmart

2006-06-16 15:00

reporter   ~0011972

Last edited: 2006-06-16 15:01

this is related to file ircd.c and provides structure consitency to output information

stskeeps

2007-04-27 03:40

reporter   ~0013776

Could someone check if this has some merit, at all? :P

syzop

2007-05-07 12:47

administrator   ~0014022

Last edited: 2007-05-07 12:48

I'm not so sure. Currently it's easy to see if curl can handle SSL for example, AFAIK if this patch is done, then that isn't that visisble anymore (same for some other stuff I... guess....). I understand the thought but, it will loose information at the cost of some ''nicer view''
EDIT: I should mention that all this is fro mthe top of my head, i have not touched or ran the ircd.

stskeeps

2007-06-11 15:58

reporter   ~0014321

A bit of verbosity is always nice.

stskeeps

2007-06-11 15:58

reporter   ~0014322

A bit of verbosity is always nice.

Issue History

Date Modified Username Field Change
2006-06-16 14:59 buildsmart New Issue
2006-06-16 15:00 buildsmart Note Added: 0011972
2006-06-16 15:01 buildsmart Note Edited: 0011972
2007-04-27 03:39 stskeeps Status new => acknowledged
2007-04-27 03:40 stskeeps Note Added: 0013776
2007-04-27 03:40 stskeeps Status acknowledged => feedback
2007-05-07 12:47 syzop Note Added: 0014022
2007-05-07 12:48 syzop Note Edited: 0014022
2007-06-11 15:58 stskeeps Status feedback => closed
2007-06-11 15:58 stskeeps Note Added: 0014321
2007-06-11 15:58 stskeeps Note Added: 0014322
2007-06-11 15:58 stskeeps Resolution open => wont fix
2007-06-11 15:58 stskeeps Resolution open => wont fix