Explorar o código

Merge pull request #12 from DanielOaks/url-fix

Correct URLs in civetweb.c
sunsetbrew %!s(int64=12) %!d(string=hai) anos
pai
achega
7076abcd6f
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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",