updating copyright stuff in slock as well
This commit is contained in:
		
							parent
							
								
									1726ff0816
								
							
						
					
					
						commit
						20e294a66f
					
				
							
								
								
									
										2
									
								
								LICENSE
								
								
								
								
							
							
						
						
									
										2
									
								
								LICENSE
								
								
								
								
							| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
MIT/X Consortium License
 | 
					MIT/X Consortium License
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
 | 
					© 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Permission is hereby granted, free of charge, to any person obtaining a
 | 
					Permission is hereby granted, free of charge, to any person obtaining a
 | 
				
			||||||
copy of this software and associated documentation files (the "Software"),
 | 
					copy of this software and associated documentation files (the "Software"),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										2
									
								
								Makefile
								
								
								
								
							
							
						
						
									
										2
									
								
								Makefile
								
								
								
								
							| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
# slock - simple screen locker
 | 
					# slock - simple screen locker
 | 
				
			||||||
#   (C)opyright MMVI-MMVII Anselm R. Garbe
 | 
					# © 2006-2007 Anselm R. Garbe, Sander van Dijk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
include config.mk
 | 
					include config.mk
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
# slock version
 | 
					# slock version
 | 
				
			||||||
VERSION = 0.6
 | 
					VERSION = 0.7
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Customize below to fit your system
 | 
					# Customize below to fit your system
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										7
									
								
								slock.c
								
								
								
								
							
							
						
						
									
										7
									
								
								slock.c
								
								
								
								
							| 
						 | 
					@ -1,6 +1,5 @@
 | 
				
			||||||
/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
 | 
					/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
 | 
				
			||||||
 * See LICENSE file for license details.
 | 
					 * See LICENSE file for license details. */
 | 
				
			||||||
 */
 | 
					 | 
				
			||||||
#define _XOPEN_SOURCE 500
 | 
					#define _XOPEN_SOURCE 500
 | 
				
			||||||
#if HAVE_SHADOW_H
 | 
					#if HAVE_SHADOW_H
 | 
				
			||||||
#include <shadow.h>
 | 
					#include <shadow.h>
 | 
				
			||||||
| 
						 | 
					@ -64,7 +63,7 @@ main(int argc, char **argv) {
 | 
				
			||||||
	XSetWindowAttributes wa;
 | 
						XSetWindowAttributes wa;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if((argc > 1) && !strncmp(argv[1], "-v", 3)) {
 | 
						if((argc > 1) && !strncmp(argv[1], "-v", 3)) {
 | 
				
			||||||
		fputs("slock-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
 | 
							fputs("slock-"VERSION", © 2006-2007 Anselm R. Garbe\n", stdout);
 | 
				
			||||||
		exit(EXIT_SUCCESS);
 | 
							exit(EXIT_SUCCESS);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	pws = get_password();
 | 
						pws = get_password();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue