Skip to content

Commit

Permalink
Fix for silly 'missing return' issue that leaves directory listing br…
Browse files Browse the repository at this point in the history
…oken on some systems, while miraculously working on others
  • Loading branch information
Colum Paget committed Oct 29, 2019
1 parent 4928c06 commit f9f83c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "Authenticate.h"

TSettings Settings;
char *Version="2.2";
char *Version="2.3";

void SetTimezoneEnv()
{
Expand Down
1 change: 1 addition & 0 deletions directory_listing.c
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ static char *DisplayDirUpload(char *HTML, HTTPSession *Session)
static char *DisplayDirMkDir(char *HTML, HTTPSession *Session, int Flags)
{
HTML=MCatStr(HTML,"<form><td align=left bgcolor='yellow'>New Folder:<input type=text name=mkdir><input type=submit name='mkdir:",Session->URL,"' value='MkDir'></td></form>",NULL);
return(HTML);
}


Expand Down

0 comments on commit f9f83c8

Please sign in to comment.