summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog9
-rw-r--r--cpukit/libmisc/shell/login.h56
2 files changed, 9 insertions, 56 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 90fb4aaca8..f674fe65ff 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,12 @@
+2009-04-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ * libmisc/shell/login.h: Removed.
+ * libmisc/shell/login_check.c, libmisc/shell/login_prompt.c,
+ libmisc/shell/shell.c, libmisc/shell/shell.h: Changed copyright
+ notices. Moved shell login declarations to shell.h.
+ * telnetd/check_passwd.c, telnetd/telnetd.c, telnetd/telnetd.h: Changed
+ copyright notices. Update for shell login changes.
+
2009-04-03 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libnetworking/lib/ftpfs.c: Fixed return codes of open handler.
diff --git a/cpukit/libmisc/shell/login.h b/cpukit/libmisc/shell/login.h
deleted file mode 100644
index 3e107825d4..0000000000
--- a/cpukit/libmisc/shell/login.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * @file
- *
- * @author Sebastian Huber <sebastian.huber@embedded-brains.de>
- *
- * @brief Login types and functions.
- */
-
-/*
- * Copyright (c) 2009
- * embedded brains GmbH
- * Obere Lagerstr. 30
- * D-82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * Based on work from Chris Johns, Fernando Ruiz and Till Straumann.
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- */
-
-#ifndef RTEMS_LOGIN_H
-#define RTEMS_LOGIN_H
-
-#include <stdio.h>
-
-#include <rtems.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-typedef bool (*rtems_login_check)(
- const char * /* user */,
- const char * /* passphrase */
-);
-
-bool rtems_shell_login_prompt(
- FILE *in,
- FILE *out,
- const char *device,
- rtems_login_check check
-);
-
-bool rtems_shell_login_check(
- const char *user,
- const char *passphrase
-);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* RTEMS_LOGIN_H */