View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0002977 | unreal | installing | public | 2006-06-16 14:59 | 2007-06-11 15:58 |
| Reporter | buildsmart | Assigned To | |||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | wont fix | ||
| Product Version | 3.2.4 | ||||
| Summary | 0002977: Clean up output of libcurl version information | ||||
| Description | current implementation: #ifdef USE_LIBCURL fprintf(stderr, " using %s\n", curl_version); #endif | ||||
| Additional Information | proposed 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 | |||||
|
|
this is related to file ircd.c and provides structure consitency to output information |
|
|
Could someone check if this has some merit, at all? :P |
|
|
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. |
|
|
A bit of verbosity is always nice. |
|
|
A bit of verbosity is always nice. |
| 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 |
|
Status | new => acknowledged |
| 2007-04-27 03:40 |
|
Note Added: 0013776 | |
| 2007-04-27 03:40 |
|
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 |
|
Status | feedback => closed |
| 2007-06-11 15:58 |
|
Note Added: 0014321 | |
| 2007-06-11 15:58 |
|
Note Added: 0014322 | |
| 2007-06-11 15:58 |
|
Resolution | open => wont fix |
| 2007-06-11 15:58 |
|
Resolution | open => wont fix |