--- deliantra/server/common/shstr.C 2009/10/12 14:00:57 1.39 +++ deliantra/server/common/shstr.C 2009/11/04 00:02:48 1.40 @@ -142,24 +142,3 @@ shstr skill_names[NUM_SKILLS]; -//TODO: this should of course not be here - -/* buf_overflow() - we don't want to exceed the buffer size of - * buf1 by adding on buf2! Returns true if overflow will occur. - */ -int -buf_overflow (const char *buf1, const char *buf2, int bufsize) -{ - int len1 = 0, len2 = 0; - - if (buf1) - len1 = strlen (buf1); - - if (buf2) - len2 = strlen (buf2); - - if ((len1 + len2) >= bufsize) - return 1; - - return 0; -}