mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	don't spam to stderr in API functions
This commit is contained in:
		
							parent
							
								
									0075649f13
								
							
						
					
					
						commit
						4e6fb67e9f
					
				
					 1 changed files with 1 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -113,10 +113,8 @@ char *pa_get_host_name(char *s, size_t l) {
 | 
			
		|||
    pa_assert(s);
 | 
			
		||||
    pa_assert(l > 0);
 | 
			
		||||
 | 
			
		||||
    if (gethostname(s, l) < 0) {
 | 
			
		||||
        pa_log("gethostname(): %s", pa_cstrerror(errno));
 | 
			
		||||
    if (gethostname(s, l) < 0)
 | 
			
		||||
        return NULL;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    s[l-1] = 0;
 | 
			
		||||
    return s;
 | 
			
		||||
| 
						 | 
				
			
			@ -142,12 +140,10 @@ char *pa_get_home_dir(char *s, size_t l) {
 | 
			
		|||
#ifdef HAVE_PWD_H
 | 
			
		||||
#ifdef HAVE_GETPWUID_R
 | 
			
		||||
    if (getpwuid_r(getuid(), &pw, buf, sizeof(buf), &r) != 0 || !r) {
 | 
			
		||||
        pa_log("getpwuid_r() failed");
 | 
			
		||||
#else
 | 
			
		||||
    /* XXX Not thread-safe, but needed on OSes (e.g. FreeBSD 4.X)
 | 
			
		||||
        * that do not support getpwuid_r. */
 | 
			
		||||
    if ((r = getpwuid(getuid())) == NULL) {
 | 
			
		||||
        pa_log("getpwuid_r() failed");
 | 
			
		||||
#endif
 | 
			
		||||
        return NULL;
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue