Changeset 5530:ffefb446142c
- Timestamp:
- 2008-09-17 23:28:51 (3 months ago)
- Author:
- Rocco Rutte <pdmef@…>
- Branch:
- HEAD
- Message:
-
Fix compiler warnings
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r5527
|
r5530
|
|
| | 1 | 2008-09-17 22:27 +0200 Thomas Roessler <roessler@does-not-exist.org> (77e25415a08a) |
| | 2 | |
| | 3 | * alias.c, globals.h, init.c, mutt_idna.c, muttlib.c, rfc822.h, |
| | 4 | sort.c: sorting efficiency |
| | 5 | |
| | 6 | 2008-09-16 17:20 +0200 Rocco Rutte <pdmef@gmx.net> (1cb0a127eb3d) |
| | 7 | |
| | 8 | * UPDATING: UPDATING: $move now defaults to "no" |
| | 9 | |
| | 10 | 2008-09-11 09:28 +0200 Rocco Rutte <pdmef@gmx.net> (1a6842983357) |
| | 11 | |
| | 12 | * ChangeLog, keymap.c: Fix IMAP keepalive if $imap_keepalive >= |
| | 13 | $timeout |
| | 14 | |
| 1 | 15 | 2008-09-01 18:23 +0200 Rocco Rutte <pdmef@gmx.net> (17adea9cdff6) |
| 2 | 16 | |
-
|
r5529
|
r5530
|
|
| 333 | 333 | } |
| 334 | 334 | |
| 335 | | alias_add_reverse (new); |
| | 335 | mutt_alias_add_reverse (new); |
| 336 | 336 | |
| 337 | 337 | if ((t = Aliases)) |
| … |
… |
|
| 449 | 449 | } |
| 450 | 450 | |
| 451 | | void alias_add_reverse (ALIAS *t) |
| | 451 | void mutt_alias_add_reverse (ALIAS *t) |
| 452 | 452 | { |
| 453 | 453 | ADDRESS *ap; |
| … |
… |
|
| 462 | 462 | } |
| 463 | 463 | |
| 464 | | void alias_delete_reverse (ALIAS *t) |
| | 464 | void mutt_alias_delete_reverse (ALIAS *t) |
| 465 | 465 | { |
| 466 | 466 | ADDRESS *ap; |
-
|
r5529
|
r5530
|
|
| 1337 | 1337 | else |
| 1338 | 1338 | { |
| 1339 | | alias_delete_reverse (tmp); |
| | 1339 | mutt_alias_delete_reverse (tmp); |
| 1340 | 1340 | /* override the previous value */ |
| 1341 | 1341 | rfc822_free_address (&tmp->addr); |
| … |
… |
|
| 1362 | 1362 | |
| 1363 | 1363 | mutt_group_context_add_adrlist (gc, tmp->addr); |
| 1364 | | alias_add_reverse (tmp); |
| | 1364 | mutt_alias_add_reverse (tmp); |
| 1365 | 1365 | |
| 1366 | 1366 | #ifdef DEBUG |
-
|
r5529
|
r5530
|
|
| 747 | 747 | t = *p; |
| 748 | 748 | *p = (*p)->next; |
| 749 | | alias_delete_reverse (t); |
| | 749 | mutt_alias_delete_reverse (t); |
| 750 | 750 | FREE (&t->name); |
| 751 | 751 | rfc822_free_address (&t->addr); |
-
|
r5473
|
r5530
|
|
| 266 | 266 | int mutt_addwch (wchar_t); |
| 267 | 267 | int mutt_alias_complete (char *, size_t); |
| | 268 | void mutt_alias_add_reverse (ALIAS *t); |
| | 269 | void mutt_alias_delete_reverse (ALIAS *t); |
| 268 | 270 | int mutt_alloc_color (int fg, int bg); |
| 269 | 271 | int mutt_any_key_to_continue (const char *); |