X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=miscutil.c;h=8b0fc5b78326ba1a6666fe1f07dde538c8764872;hp=7423af1862c12aaabeaefe8918bf8278e825293a;hb=7367a58d13c72ef9978b46f416f9b4735981bdfb;hpb=24bed489302916a8cd48522856e10e808deb506b diff --git a/miscutil.c b/miscutil.c index 7423af18..8b0fc5b7 100644 --- a/miscutil.c +++ b/miscutil.c @@ -1,4 +1,5 @@ -const char miscutil_rcs[] = "$Id: miscutil.c,v 1.7 2001/06/03 19:12:30 oes Exp $"; +/* vim:ts=3: */ +const char miscutil_rcs[] = "$Id: miscutil.c,v 1.9 2001/06/07 14:43:17 swa Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/miscutil.c,v $ @@ -36,6 +37,12 @@ const char miscutil_rcs[] = "$Id: miscutil.c,v 1.7 2001/06/03 19:12:30 oes Exp $ * * Revisions : * $Log: miscutil.c,v $ + * Revision 1.9 2001/06/07 14:43:17 swa + * slight mistake in make_path, unix path style is /. + * + * Revision 1.8 2001/06/05 22:32:01 jongfoster + * New function make_path() to splice directory and file names together. + * * Revision 1.7 2001/06/03 19:12:30 oes * introduced bindup() * @@ -631,6 +638,24 @@ char *bindup(const char *string, int n) *********************************************************************/ char * make_path(const char * dir, const char * file) { +#ifdef AMIGA + char path[512]; + + if(dir) + { + strncpy(path,dir,512); + path[511]=0; + } else { + path[0]=0; + } + if(AddPart(path,file,512)) + { + return strdup(path); + } else { + return NULL; + } +#else /* ndef AMIGA */ + if ((file == NULL) || (*file == '\0')) { return NULL; /* Error */ @@ -653,12 +678,13 @@ char * make_path(const char * dir, const char * file) #ifdef _WIN32 strcat(path, "\\"); #else /* ifndef _WIN32 */ - strcat(path, "\\"); + if(path[strlen(path)-1] != '/') strcat(path, "/"); #endif /* ifndef _WIN32 */ strcat(path, file); return path; } +#endif /* ndef AMIGA */ }