diff options
| author | Mattias Andrée <maandree@kth.se> | 2020-08-29 05:33:44 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@kth.se> | 2020-08-29 05:33:55 +0200 |
| commit | 2489f8de7ac1119c0da31279cdc091b83427e4dc (patch) | |
| tree | 50bdded83410f90de7029821c57a53bd91b85ccd | |
| parent | getpwnam returns EIO if user does not exist (diff) | |
| download | cerberus-2489f8de7ac1119c0da31279cdc091b83427e4dc.tar.gz cerberus-2489f8de7ac1119c0da31279cdc091b83427e4dc.tar.bz2 cerberus-2489f8de7ac1119c0da31279cdc091b83427e4dc.tar.xz | |
Udpdate for new version of glibcHEAD1598672167master
Signed-off-by: Mattias Andrée <maandree@kth.se>
| -rw-r--r-- | COPYING | 2 | ||||
| -rw-r--r-- | Makefile | 18 | ||||
| -rw-r--r-- | src/auth.h | 2 | ||||
| -rw-r--r-- | src/auth/crypt.c | 2 | ||||
| -rw-r--r-- | src/auth/crypt.h | 2 | ||||
| -rw-r--r-- | src/auth/pam.c | 2 | ||||
| -rw-r--r-- | src/auth/pam.h | 2 | ||||
| -rw-r--r-- | src/cerberus.c | 2 | ||||
| -rw-r--r-- | src/cerberus.h | 3 | ||||
| -rw-r--r-- | src/config.h | 2 | ||||
| -rw-r--r-- | src/login.c | 2 | ||||
| -rw-r--r-- | src/login.h | 2 | ||||
| -rw-r--r-- | src/quit.c | 2 | ||||
| -rw-r--r-- | src/quit.h | 2 | ||||
| -rw-r--r-- | src/security.c | 3 | ||||
| -rw-r--r-- | src/security.h | 2 |
16 files changed, 24 insertions, 26 deletions
@@ -1,6 +1,6 @@ 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 @@ -187,18 +187,18 @@ install-dvi: cerberus.dvi .PHONY: uninstall uninstall: - -rm -- "$(DESTDIR)$(PREFIX)$(INSTALL_BIN)/$(COMMAND)" - -rm -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)/COPYING" - -rm -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)/LICENSE" - -rmdir -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)" - -rm -- "$(DESTDIR)$(PREFIX)$(DATA)/info/$(PKGNAME).info" - -rm -- "$(DESTDIR)$(PREFIX)$(DATA)/doc/$(PKGNAME).pdf" - -rm -- "$(DESTDIR)$(PREFIX)$(DATA)/doc/$(PKGNAME).ps" - -rm -- "$(DESTDIR)$(PREFIX)$(DATA)/doc/$(PKGNAME).dvi" + -rm -f -- "$(DESTDIR)$(PREFIX)$(INSTALL_BIN)/$(COMMAND)" + -rm -f -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)/COPYING" + -rm -f -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)/LICENSE" + -rmdir -f -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)" + -rm -f -- "$(DESTDIR)$(PREFIX)$(DATA)/info/$(PKGNAME).info" + -rm -f -- "$(DESTDIR)$(PREFIX)$(DATA)/doc/$(PKGNAME).pdf" + -rm -f -- "$(DESTDIR)$(PREFIX)$(DATA)/doc/$(PKGNAME).ps" + -rm -f -- "$(DESTDIR)$(PREFIX)$(DATA)/doc/$(PKGNAME).dvi" .PHONY: clean clean: - -rm -r bin obj cerberus.{info,pdf,ps,dvi} + -rm -rf -- bin obj cerberus.info cerberus.pdf cerberus.ps cerberus.dvi @@ -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 @@ -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 @@ -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 |
