Browse Source

Merge pull request #12 from DanielOaks/url-fix

Correct URLs in civetweb.c
sunsetbrew 11 years ago
parent
commit
7076abcd6f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/civetweb.c

+ 2 - 2
src/civetweb.c

@@ -2800,7 +2800,7 @@ static int scan_directory(struct mg_connection *conn, const char *dir,
             // garbage and strftime() will segfault later on in
             // print_dir_entry(). memset is required only if mg_stat()
             // fails. For more details, see
-            // http://code.google.com/p/civetweb/issues/detail?id=79
+            // http://code.google.com/p/mongoose/issues/detail?id=79
             memset(&de.file, 0, sizeof(de.file));
             if (!mg_stat(conn, path, &de.file)) {
                 mg_cry(conn, "%s: mg_stat(%s) failed: %s",
@@ -2840,7 +2840,7 @@ static int remove_directory(struct mg_connection *conn, const char *dir)
             // garbage and strftime() will segfault later on in
             // print_dir_entry(). memset is required only if mg_stat()
             // fails. For more details, see
-            // http://code.google.com/p/civetweb/issues/detail?id=79
+            // http://code.google.com/p/mongoose/issues/detail?id=79
             memset(&de.file, 0, sizeof(de.file));
             if (!mg_stat(conn, path, &de.file)) {
                 mg_cry(conn, "%s: mg_stat(%s) failed: %s",