diff options
author | kristerw <kristerw@pkgsrc.org> | 2003-10-28 00:14:11 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2003-10-28 00:14:11 +0000 |
commit | 1863a7c57062a66f6bb95c5da035c0555c4fb177 (patch) | |
tree | 124d0687da1e5129bee4a05fa92b70c7c7ab91c5 /security/fressh/patches/patch-aj | |
parent | 515369e60081dc6b8d34649396a3334816f5eebb (diff) | |
download | pkgsrc-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-aj | 13 |
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; + } |