aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-08-29 05:33:44 +0200
committerMattias Andrée <maandree@kth.se>2020-08-29 05:33:55 +0200
commit2489f8de7ac1119c0da31279cdc091b83427e4dc (patch)
tree50bdded83410f90de7029821c57a53bd91b85ccd /src
parentgetpwnam returns EIO if user does not exist (diff)
downloadcerberus-master.tar.gz
cerberus-master.tar.bz2
cerberus-master.tar.xz
Udpdate for new version of glibcHEAD1598672167master
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src')
-rw-r--r--src/auth.h2
-rw-r--r--src/auth/crypt.c2
-rw-r--r--src/auth/crypt.h2
-rw-r--r--src/auth/pam.c2
-rw-r--r--src/auth/pam.h2
-rw-r--r--src/cerberus.c2
-rw-r--r--src/cerberus.h3
-rw-r--r--src/config.h2
-rw-r--r--src/login.c2
-rw-r--r--src/login.h2
-rw-r--r--src/quit.c2
-rw-r--r--src/quit.h2
-rw-r--r--src/security.c3
-rw-r--r--src/security.h2
14 files changed, 14 insertions, 16 deletions
diff --git a/src/auth.h b/src/auth.h
index b8bb2e6..edca0b8 100644
--- a/src/auth.h
+++ b/src/auth.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/auth/crypt.c b/src/auth/crypt.c
index 6839386..4573c5a 100644
--- a/src/auth/crypt.c
+++ b/src/auth/crypt.c
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/auth/crypt.h b/src/auth/crypt.h
index 0a71f32..4478929 100644
--- a/src/auth/crypt.h
+++ b/src/auth/crypt.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/auth/pam.c b/src/auth/pam.c
index 9c93d51..106462a 100644
--- a/src/auth/pam.c
+++ b/src/auth/pam.c
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/auth/pam.h b/src/auth/pam.h
index 518ea90..ecfe03a 100644
--- a/src/auth/pam.h
+++ b/src/auth/pam.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/cerberus.c b/src/cerberus.c
index 3f2c539..0cd06b4 100644
--- a/src/cerberus.c
+++ b/src/cerberus.c
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/cerberus.h b/src/cerberus.h
index 420e2ab..a81b8a0 100644
--- a/src/cerberus.h
+++ b/src/cerberus.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -26,7 +26,6 @@
#include <signal.h>
#include <pwd.h>
#include <errno.h>
-#include <stropts.h>
#include <termios.h>
#include <fcntl.h>
#include <sys/wait.h>
diff --git a/src/config.h b/src/config.h
index eefc78b..aa144b2 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/login.c b/src/login.c
index 7d522be..e99b77f 100644
--- a/src/login.c
+++ b/src/login.c
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/login.h b/src/login.h
index d87b5c2..a672434 100644
--- a/src/login.h
+++ b/src/login.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/quit.c b/src/quit.c
index 04fff6d..e26fca1 100644
--- a/src/quit.c
+++ b/src/quit.c
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/quit.h b/src/quit.h
index fb616a0..f5e8c74 100644
--- a/src/quit.h
+++ b/src/quit.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/security.c b/src/security.c
index e4a6459..9a1faf3 100644
--- a/src/security.c
+++ b/src/security.c
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,7 +22,6 @@
#include <termios.h>
#include <fcntl.h>
#include <signal.h>
-#include <stropts.h>
#include <errno.h>
#if defined(OWN_VCSA) || defined(OWN_VCS)
#include <string.h>
diff --git a/src/security.h b/src/security.h
index 252d4bf..d367dc7 100644
--- a/src/security.h
+++ b/src/security.h
@@ -1,7 +1,7 @@
/**
* cerberus – Minimal login program
*
- * Copyright © 2013, 2014, 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2013, 2014, 2015, 2016, 2020 Mattias Andrée (maandree@kth.se)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by