diff options
| author | Alexander Barton <alex@barton.de> | 2012-01-15 19:46:00 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2012-01-15 19:46:00 +0100 |
| commit | 7ed08f01efb4e1b0c1aed2de8d9f145604cdfac0 (patch) | |
| tree | e961c5bce64b65fae022c820d7518791e36057a7 | |
| parent | 81cc5f82b50de80bff9d2d1c37fc726baea5fac5 (diff) | |
| download | ngircd-7ed08f01efb4e1b0c1aed2de8d9f145604cdfac0.tar.gz ngircd-7ed08f01efb4e1b0c1aed2de8d9f145604cdfac0.zip | |
Remove unused prototype of Lists_AlreadyRegistered()
This prototype has been introduced by commit fa7bb279 in 2006, but as far as I can see, this function never existed ...
| -rw-r--r-- | src/ngircd/lists.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ngircd/lists.h b/src/ngircd/lists.h index f709f3fa..d0b4d819 100644 --- a/src/ngircd/lists.h +++ b/src/ngircd/lists.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,9 +37,6 @@ GLOBAL bool Lists_Add PARAMS((struct list_head *h, const char *Mask, time_t ValidUntil, const char *Reason)); GLOBAL void Lists_Del PARAMS((struct list_head *head, const char *Mask)); -GLOBAL bool Lists_AlreadyRegistered PARAMS((const struct list_head *head, - const char *Mask)); - GLOBAL void Lists_Free PARAMS((struct list_head *head)); GLOBAL const char *Lists_MakeMask PARAMS((const char *Pattern)); |