diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2013-06-16 15:50:51 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2013-06-16 15:50:51 +0000 |
commit | 3272e882b8a7c78756680d3b45fd093e15e9316f (patch) | |
tree | c5a17963cdedabab85f1c67b85dbe6152ec7d3bc /mail/pathalias/files/patch-local.c | |
parent | - rename patches (diff) |
- add prototypes and fix a ton of warnings
Diffstat (limited to 'mail/pathalias/files/patch-local.c')
-rw-r--r-- | mail/pathalias/files/patch-local.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mail/pathalias/files/patch-local.c b/mail/pathalias/files/patch-local.c new file mode 100644 index 000000000000..cc66431caef1 --- /dev/null +++ b/mail/pathalias/files/patch-local.c @@ -0,0 +1,25 @@ +--- local.c.orig 1993-03-03 22:10:02.000000000 +0100 ++++ local.c 2013-06-16 15:45:27.000000000 +0200 +@@ -1,11 +1,9 @@ + /* pathalias -- by steve bellovin, as told to peter honeyman */ + #ifndef lint +-static char *sccsid = "@(#)local.c 9.3 91/06/11"; ++static const char *sccsid = "@(#)local.c 9.3 91/06/11"; + #endif /* lint */ + +-#include "config.h" +- +-#include STDIO_H ++#include "def.h" + + #ifdef UNAME + #include <sys/utsname.h> +@@ -29,7 +27,7 @@ + extern int gethostname(); + + (void) gethostname(lname, (int) sizeof(lname)); +- lname[sizeof(lname)] = 0; ++ lname[sizeof(lname) -1] = 0; + return(lname); + } + |