aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--COPYING2
-rw-r--r--Makefile18
-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
16 files changed, 24 insertions, 26 deletions
diff --git a/COPYING b/COPYING
index 41dc962..1d98e28 100644
--- a/COPYING
+++ b/COPYING
@@ -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
diff --git a/Makefile b/Makefile
index 9034a03..472f564 100644
--- a/Makefile
+++ b/Makefile
@@ -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
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