X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fprotocol.c;h=1ec169a00d223a084f4d5deae951a2ec402bf865;hb=89715454c083aaeb4dc73340f2d0ab9a3d9503e0;hp=d166305bee8185ff0397e71ff34e757091b4baf5;hpb=c83c2d080f21b12db42ef664d7c3272b8b700656;p=tinc diff --git a/src/protocol.c b/src/protocol.c index d166305b..1ec169a0 100644 --- a/src/protocol.c +++ b/src/protocol.c @@ -1,7 +1,7 @@ /* protocol.c -- handle the meta-protocol, basic functions Copyright (C) 1999-2005 Ivo Timmermans, - 2000-2012 Guus Sliepen + 2000-2013 Guus Sliepen 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 @@ -55,17 +55,6 @@ static char (*request_name[]) = { static splay_tree_t *past_request_tree; -bool check_id(const char *id) { - if(!id || !*id) - return false; - - for(; *id; id++) - if(!isalnum(*id) && *id != '_') - return false; - - return true; -} - /* Generic request routines - takes care of logging and error detection as well */