Compare commits
	
		
			3 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 4d20309ffe | ||
|   | 65439ba023 | ||
|   | 86162f3f47 | 
							
								
								
									
										23
									
								
								ChangeLog
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								ChangeLog
									
									
									
									
									
								
							| @@ -1,3 +1,26 @@ | ||||
| commit 65439ba023195786e71316f6638b52603e102f60 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     rc_find_pids: namespace fix | ||||
|      | ||||
|     Ignore namespaces if there are errors reading either the pid namespace | ||||
|     for the current process or the process we aare testing. | ||||
|      | ||||
|     This fixes https://github.com/openrc/openrc/issues/180. | ||||
|  | ||||
| commit 86162f3f47c393fc173de0458eeeb322c0bb61f2 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     version 0.34.7 | ||||
|  | ||||
| commit b98e83ee9195eb052fafebc440515f0b2d055a91 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|  | ||||
|     Update ChangeLog | ||||
|  | ||||
| commit d59197fafef164fe7319f9d87f544a8cc8e25044 | ||||
| Author: William Hubbs <w.d.hubbs@gmail.com> | ||||
| Commit: William Hubbs <w.d.hubbs@gmail.com> | ||||
|   | ||||
| @@ -1,3 +1,3 @@ | ||||
| NAME=		openrc | ||||
| VERSION=	0.34.6 | ||||
| VERSION=	0.34.7 | ||||
| PKG=		${NAME}-${VERSION} | ||||
|   | ||||
| @@ -155,7 +155,7 @@ rc_find_pids(const char *exec, const char *const *argv, uid_t uid, pid_t pid) | ||||
| 			if (rc <= 0) | ||||
| 				proc_ns[0] = '\0'; | ||||
| 		} | ||||
| 		if (strcmp(my_ns, proc_ns)) | ||||
| 		if (strlen(my_ns) && strlen (proc_ns) && strcmp(my_ns, proc_ns)) | ||||
| 			continue; | ||||
| 		if (uid) { | ||||
| 			snprintf(buffer, sizeof(buffer), "/proc/%d", p); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user