X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Futils.c;h=02b7b3443e626c268bead9bff0bccd03f094b596;hp=2e40ef5889f8c6890ed3eaed5b45483ebc8c4ba3;hb=81afa26e4ad53bea00da18a7666f63d33cf3f588;hpb=b0825f36b7b5dade1693fdbddfec7eef3f5ed86f diff --git a/lib/utils.c b/lib/utils.c index 2e40ef58..02b7b344 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -1,7 +1,7 @@ /* utils.c -- gathering of some stupid small functions - Copyright (C) 1999-2003 Ivo Timmermans - 2000-2003 Guus Sliepen + Copyright (C) 1999-2005 Ivo Timmermans + 2000-2006 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 @@ -29,7 +29,7 @@ volatile char (*cp_file[]) = {"?", "?", "?", "?", "?", "?", "?", "?", "?", "?", volatile int cp_index = 0; #endif -char *hexadecimals = "0123456789ABCDEF"; +const char hexadecimals[] = "0123456789ABCDEF"; int charhex2bin(char c) { @@ -85,7 +85,7 @@ void cp_trace() #include #endif -char *winerror(int err) { +const char *winerror(int err) { static char buf[1024], *newline; if (!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, @@ -100,3 +100,10 @@ char *winerror(int err) { } #endif +unsigned int bitfield_to_int(void *bitfield, size_t size) { + unsigned int value = 0; + if(size > sizeof value) + size = sizeof value; + memcpy(&value, bitfield, size); + return value; +}