X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Futils.c;h=19c86a923427b1136063aba06508a59a158a8a4d;hp=43abf96ee356034d74462bc9fc3d1ce87c284b1f;hb=b0a80007e8945a11d7ce25aab096c5ee58ce0ad5;hpb=7bed2a7099fc7359f6ec24e5f2d7050c7d63b6ac diff --git a/lib/utils.c b/lib/utils.c index 43abf96e..19c86a92 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-2004 Ivo Timmermans + 2000-2004 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 @@ -86,13 +86,16 @@ void cp_trace() #endif char *winerror(int err) { - static char buf[1024]; + static char buf[1024], *newline; if (!FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), buf, sizeof(buf), NULL)) { strncpy(buf, _("(unable to format errormessage)"), sizeof(buf)); }; + if((newline = strchr(buf, '\r'))) + *newline = '\0'; + return buf; } #endif