summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/strsep.c10
2 files changed, 3 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index ab00a5aae..dc1bb31ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -36,6 +36,7 @@
36 - (dtucker) [openbsd-compat/inet_ntoa.c] Update from OpenBSD 1.4 -> 1.6. 36 - (dtucker) [openbsd-compat/inet_ntoa.c] Update from OpenBSD 1.4 -> 1.6.
37 - (dtucker) [openbsd-compat/inet_ntop.c] Update from OpenBSD 1.5 -> 1.7. 37 - (dtucker) [openbsd-compat/inet_ntop.c] Update from OpenBSD 1.5 -> 1.7.
38 - (dtucker) [openbsd-compat/daemon.c] Update from OpenBSD 1.5 -> 1.6. 38 - (dtucker) [openbsd-compat/daemon.c] Update from OpenBSD 1.5 -> 1.6.
39 - (dtucker) [openbsd-compat/strsep.c] Update from OpenBSD 1.5 -> 1.6.
39 40
4020051105 4120051105
41 - (djm) OpenBSD CVS Sync 42 - (djm) OpenBSD CVS Sync
@@ -3278,4 +3279,4 @@
3278 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 3279 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
3279 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 3280 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
3280 3281
3281$Id: ChangeLog,v 1.3978 2005/11/10 06:27:25 dtucker Exp $ 3282$Id: ChangeLog,v 1.3979 2005/11/10 06:28:35 dtucker Exp $
diff --git a/openbsd-compat/strsep.c b/openbsd-compat/strsep.c
index 9e81980c7..b36eb8fda 100644
--- a/openbsd-compat/strsep.c
+++ b/openbsd-compat/strsep.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $ */ 1/* $OpenBSD: strsep.c,v 1.6 2005/08/08 08:05:37 espie Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990, 1993 4 * Copyright (c) 1990, 1993
@@ -38,14 +38,6 @@
38#include <string.h> 38#include <string.h>
39#include <stdio.h> 39#include <stdio.h>
40 40
41#if defined(LIBC_SCCS) && !defined(lint)
42#if 0
43static char sccsid[] = "@(#)strsep.c 8.1 (Berkeley) 6/4/93";
44#else
45static char *rcsid = "$OpenBSD: strsep.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
46#endif
47#endif /* LIBC_SCCS and not lint */
48
49/* 41/*
50 * Get next token from string *stringp, where tokens are possibly-empty 42 * Get next token from string *stringp, where tokens are possibly-empty
51 * strings separated by characters from delim. 43 * strings separated by characters from delim.