diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:28:00 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:28:00 +0000 |
commit | f7ea8910e22e9ed4750db74b0db0bb4db2a857af (patch) | |
tree | 47a36651d4c54921391787dedddd98e549c6a768 | |
parent | 0810117b8375d88af0d02ded172dacc19d88c6cf (diff) |
use O_RDONLY vs. 0 in open(); no binary change
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index 1a594fab952..3b6c330f4c4 100644 --- a/usr.bin/ssh/ssh-add.c +++ b/usr.bin/ssh/ssh-add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-add.c,v 1.82 2006/07/09 15:15:11 stevesk Exp $ */ +/* $OpenBSD: ssh-add.c,v 1.83 2006/07/09 15:27:59 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -135,7 +135,7 @@ add_file(AuthenticationConnection *ac, const char *filename) char msg[1024]; int fd, perms_ok, ret = -1; - if ((fd = open(filename, 0)) < 0) { + if ((fd = open(filename, O_RDONLY)) < 0) { perror(filename); return -1; } |