Skip to content

Commit

Permalink
Use https:// for links when available
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne committed Sep 23, 2018
1 parent 4cfa8f7 commit da2ae0e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apache2/mod_proxy_uwsgi.c
Expand Up @@ -8,7 +8,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
Expand Down
2 changes: 1 addition & 1 deletion core/progress.c
Expand Up @@ -33,7 +33,7 @@ char *uwsgi_upload_progress_create(struct wsgi_request *wsgi_req, int *fd) {
}
}

// now check for valid uuid (from spec available at http://en.wikipedia.org/wiki/Universally_unique_identifier)
// now check for valid uuid (from spec available at https://en.wikipedia.org/wiki/Universally_unique_identifier)
if (!upload_progress_filename)
return NULL;

Expand Down
2 changes: 1 addition & 1 deletion plugins/pyuwsgi/pyuwsgi.c
Expand Up @@ -212,7 +212,7 @@ pyuwsgi_set_orig_argv(PyObject *self)
char *arg = orig_argv[i];
//XXX: _PyOS_optarg != 0 also indicates python quit early...
//FIXME: [upstream:python] orig_argv could be mangled; reset
// rel: http://bugs.python.org/issue8202
// rel: https://bugs.python.org/issue8202
orig_argv[i + 1] = arg + strlen(arg) + 1;

// look for -c or -m and record the offset
Expand Down
2 changes: 1 addition & 1 deletion t/ring/src/uwsgi/ring/tests/body.clj
Expand Up @@ -2,7 +2,7 @@
(:use [compojure.core]))

; generating primary numbers
; http://clojuredocs.org/clojure_core/clojure.core/lazy-seq#example_1000
; https://clojuredocs.org/clojure.core/lazy-seq#example_1000
(defn sieve [s]
(cons (first s)
(lazy-seq (sieve (filter #(not= 0 (mod % (first s)))
Expand Down

0 comments on commit da2ae0e

Please sign in to comment.