summaryrefslogtreecommitdiff
path: root/security/fressh/patches/patch-aj
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2003-10-28 00:14:11 +0000
committerkristerw <kristerw@pkgsrc.org>2003-10-28 00:14:11 +0000
commit1863a7c57062a66f6bb95c5da035c0555c4fb177 (patch)
tree124d0687da1e5129bee4a05fa92b70c7c7ab91c5 /security/fressh/patches/patch-aj
parent515369e60081dc6b8d34649396a3334816f5eebb (diff)
downloadpkgsrc-1863a7c57062a66f6bb95c5da035c0555c4fb177.tar.gz
Fix some harmless compiler warnings on NetBSD current (since this
package is built with -Wall)
Diffstat (limited to 'security/fressh/patches/patch-aj')
-rw-r--r--security/fressh/patches/patch-aj13
1 files changed, 13 insertions, 0 deletions
diff --git a/security/fressh/patches/patch-aj b/security/fressh/patches/patch-aj
new file mode 100644
index 00000000000..7de849a7853
--- /dev/null
+++ b/security/fressh/patches/patch-aj
@@ -0,0 +1,13 @@
+$NetBSD: patch-aj,v 1.1 2003/10/28 00:14:11 kristerw Exp $
+
+--- ssh_sys_bsd44+.c.orig Tue Oct 28 00:53:17 2003
++++ ssh_sys_bsd44+.c Tue Oct 28 00:55:52 2003
+@@ -830,7 +830,7 @@
+ if (pwent == NULL)
+ return -1;
+
+- if (pwent->pw_passwd[0] == NULL) {
++ if (pwent->pw_passwd[0] == 0) {
+ ret = 0;
+ goto out;
+ }