about summary refs log tree commit diff
path: root/kittybox-rs/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'kittybox-rs/src/main.rs')
-rw-r--r--kittybox-rs/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/kittybox-rs/src/main.rs b/kittybox-rs/src/main.rs
index 1586e60..395bb31 100644
--- a/kittybox-rs/src/main.rs
+++ b/kittybox-rs/src/main.rs
@@ -23,7 +23,7 @@ async fn main() {
         }
     };
 
-    let listen_at = match env::var("SERVE_AT")
+    let listen_addr = match env::var("SERVE_AT")
         .ok()
         .unwrap_or_else(|| "[::]:8080".to_string())
         .parse::<std::net::SocketAddr>()
@@ -182,7 +182,7 @@ async fn main() {
             let tcp_listener = if let Ok(Some(listener)) = listenfd.take_tcp_listener(0) {
                 listener
             } else {
-                std::net::TcpListener::bind(listen_at).unwrap()
+                std::net::TcpListener::bind(listen_addr).unwrap()
             };
             // Set the socket to non-blocking so tokio can poll it
             // properly -- this is the async magic!