mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-23 01:53:46 +01:00
Fix some rpcgen sample file issues.
* -Sc was generating code without a return type on main. * -Sm was generating an unusable clean target due to undefined RM. * -Sm was generating clean target with extra preceding space. PR: 185582 Submitted by: Pawel Biernacki <pawel.biernacki@gmail.com> MFC after: 1 week
This commit is contained in:
parent
021b026f31
commit
3675249837
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=267174
@ -878,8 +878,8 @@ $(TARGETS_SVC.c) \n\n");
|
||||
f_print(fout, "\t$(CC) -o $(CLIENT) $(OBJECTS_CLNT) \
|
||||
$(LDLIBS) \n\n");
|
||||
f_print(fout, "$(SERVER) : $(OBJECTS_SVC) \n");
|
||||
f_print(fout, "\t$(CC) -o $(SERVER) $(OBJECTS_SVC) $(LDLIBS)\n\n ");
|
||||
f_print(fout, "clean:\n\t $(RM) -f core $(TARGETS) $(OBJECTS_CLNT) \
|
||||
f_print(fout, "\t$(CC) -o $(SERVER) $(OBJECTS_SVC) $(LDLIBS)\n\n");
|
||||
f_print(fout, "clean:\n\t rm -f core $(TARGETS) $(OBJECTS_CLNT) \
|
||||
$(OBJECTS_SVC) $(CLIENT) $(SERVER)\n\n");
|
||||
}
|
||||
|
||||
|
@ -270,6 +270,7 @@ write_sample_clnt_main(void)
|
||||
version_list *vp;
|
||||
|
||||
f_print(fout, "\n\n");
|
||||
f_print(fout, "int\n");
|
||||
f_print(fout, "main(int argc, char *argv[])\n{\n");
|
||||
|
||||
f_print(fout, "\tchar *host;");
|
||||
|
Loading…
Reference in New Issue
Block a user