Changeset - 45bbc99ffe99
[Not reviewed]
default
0 2 0
ethanzonca - 16 years ago 2009-07-31 19:43:09

Made conf_replace() returnable
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/server/slavefuncs.c
Show inline comments
 
@@ -200,7 +200,7 @@ int login_user(char *username)
 
}
 

	
 
/** Replaces username and key in the slave's conf file */
 
void conf_replace(char *username){
 
int conf_replace(char *username){
 
  /* Note: SYSCONFDIR doesn't include a trailing slash */
 
  int maxlinelen = 120;
 
  char *fileOrig = SYSCONFDIR "/distrenslave.conf";
src/server/slavefuncs.h
Show inline comments
 
@@ -24,7 +24,7 @@
 
int ssh_keygen();
 
int register_user(char *username, char *email);
 
int login_user(char *username);
 
void conf_replace(char *username);
 
int conf_replace(char *username);
 
void exec_blender(struct blendjob* blendjob, char *input, char *output, int frame);
 

	
 

	
0 comments (0 inline, 0 general)