about summary refs log tree commit diff
path: root/surf.c
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2012-10-31 21:25:14 +0100
committerChristoph Lohmann <20h@r-36.net>2012-10-31 21:25:14 +0100
commit1bfda445acda48a3df57414f1f5ce0a225da9588 (patch)
tree7d0c417380363bf6c8fc9fdcdb10798c0fbbead4 /surf.c
parentChanging the config.def.h to fit the new buildpath() behaviour. (diff)
downloadsurf-1bfda445acda48a3df57414f1f5ce0a225da9588.tar.gz
surf-1bfda445acda48a3df57414f1f5ce0a225da9588.tar.bz2
surf-1bfda445acda48a3df57414f1f5ce0a225da9588.zip
Adding a useragent parameter to surf.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/surf.c b/surf.c
index 3b291b5..07c689e 100644
--- a/surf.c
+++ b/surf.c
@@ -919,7 +919,7 @@ void
 usage(void) {
 	fputs("surf - simple browser\n", stderr);
 	die("usage: surf [-c cookiefile] [-e xid] [-i] [-p] [-r scriptfile]"
-		" [-s] [-t stylefile] [-v] [-x] [uri]\n");
+		" [-s] [-t stylefile] [-u useragent] [-v] [-x] [uri]\n");
 }
 
 void
@@ -967,6 +967,9 @@ main(int argc, char *argv[]) {
 	case 't':
 		stylefile = EARGF(usage());
 		break;
+	case 'u':
+		useragent = EARGF(usage());
+		break;
 	case 'x':
 		showxid = TRUE;
 		break;