summaryrefslogtreecommitdiff
path: root/openbsd-compat/port-linux.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2011-01-17 18:50:22 +1100
committerDarren Tucker <dtucker@zip.com.au>2011-01-17 18:50:22 +1100
commit263d43d2a58f0fc4cf211808410560c8c3e451d2 (patch)
tree8e59a01e3014ab660da878ca1a1595eecf13ba29 /openbsd-compat/port-linux.c
parent6dfcd34042197e904a6c92e277d6b60a58e7a90a (diff)
downloadopenssh-git-263d43d2a58f0fc4cf211808410560c8c3e451d2.tar.gz
- (dtucker) [openbsd-compat/port-linux.c] Fix minor bug caught by -Werror on
the tinderbox.
Diffstat (limited to 'openbsd-compat/port-linux.c')
-rw-r--r--openbsd-compat/port-linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/port-linux.c b/openbsd-compat/port-linux.c
index d89101d1..5b1cf402 100644
--- a/openbsd-compat/port-linux.c
+++ b/openbsd-compat/port-linux.c
@@ -1,4 +1,4 @@
-/* $Id: port-linux.c,v 1.10 2011/01/17 00:56:00 dtucker Exp $ */
+/* $Id: port-linux.c,v 1.11 2011/01/17 07:50:24 dtucker Exp $ */
/*
* Copyright (c) 2005 Daniel Walsh <dwalsh@redhat.com>
@@ -266,7 +266,7 @@ oom_adjust_restore(void)
FILE *fp;
debug3("%s", __func__);
- if (oom_adj_save == INT_MIN || oom_adj_save == NULL ||
+ if (oom_adj_save == INT_MIN || oom_adj_path == NULL ||
(fp = fopen(oom_adj_path, "w")) == NULL)
return;