diff options
author | Theodore Tso <tytso@mit.edu> | 1995-04-28 17:00:25 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1995-04-28 17:00:25 +0000 |
commit | 81f0a942152c80c97fe4a2b5c95260de2c655b40 (patch) | |
tree | 8e1e85511340b61844bf7887aca936ebb6729daf /src/lib/krb5 | |
parent | 5aa7026979ef196e3b6696c09572fe25aa5c077b (diff) | |
download | krb5-81f0a942152c80c97fe4a2b5c95260de2c655b40.tar.gz krb5-81f0a942152c80c97fe4a2b5c95260de2c655b40.tar.xz krb5-81f0a942152c80c97fe4a2b5c95260de2c655b40.zip |
Lint cleanup; explicitly declare that daemon() returns an int
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5605 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5')
-rw-r--r-- | src/lib/krb5/posix/ChangeLog | 5 | ||||
-rw-r--r-- | src/lib/krb5/posix/daemon.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/krb5/posix/ChangeLog b/src/lib/krb5/posix/ChangeLog index 7734a5d029..469161b8d8 100644 --- a/src/lib/krb5/posix/ChangeLog +++ b/src/lib/krb5/posix/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 28 08:37:58 1995 Theodore Y. Ts'o <tytso@lurch.mit.edu> + + * daemon.c (daemon): Lint cleanup; explicitly declare that + daemon() returns an int. + Thu Apr 13 16:44:55 1995 Keith Vetter (keithv@fusion.com) * syslog.c: __STDC__ conditional also checks the _WINDOWS define. diff --git a/src/lib/krb5/posix/daemon.c b/src/lib/krb5/posix/daemon.c index a752cf85f4..afe4c04b39 100644 --- a/src/lib/krb5/posix/daemon.c +++ b/src/lib/krb5/posix/daemon.c @@ -44,6 +44,7 @@ #define _PATH_DEVNULL "/dev/null" #endif +int daemon(nochdir, noclose) int nochdir, noclose; { |