version 1.93 | | version 1.94 |
---|
| | |
/* | | /* |
* static char *rcsid_main_c = | | * static char *rcsid_main_c = |
* "$Id: main.c,v 1.93 2005/08/11 15:42:35 cavesomething Exp $"; | | * "$Id: main.c,v 1.94 2005/08/12 08:18:59 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
/* clean_path takes a path and replaces all / with _ | | /* clean_path takes a path and replaces all / with _ |
* We do a strcpy so that we do not change the original string. | | * We do a strcpy so that we do not change the original string. |
*/ | | */ |
char *clean_path(char *file) | | char *clean_path(const char *file) |
{ | | { |
static char newpath[MAX_BUF],*cp; | | static char newpath[MAX_BUF],*cp; |
| | |